From 23491b2e1ac9a4f590e94da56e72d1781b051638 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Thu, 17 Oct 2024 23:48:16 +0000 Subject: [PATCH 1/3] add errores presupuesto --- ci4/app/Config/Routes.php | 6 ++ .../ErrorPresupuestoController.php | 80 +++++++++++++++++ ci4/app/Language/es/App.php | 1 + ci4/app/Language/es/ErrorPresupuesto.php | 21 +++++ .../Models/Presupuestos/ErrorPresupuesto.php | 86 +++++++++++++++++++ .../viewErrorPresupuestoForm.php | 52 +++++++++++ .../viewErrorPresupuestoList.php | 44 ++++++++++ .../vuexy/main/menus/configuracion_menu.php | 7 ++ .../error_presupuesto/errorPresupuesto.js | 47 ++++++++++ .../error_presupuesto/errorPresupuestoForm.js | 44 ++++++++++ .../error_presupuesto/indexForm.js | 0 .../error_presupuesto/indexView.js | 6 ++ xdebug.log | 20 +++++ 13 files changed, 414 insertions(+) create mode 100644 ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php create mode 100644 ci4/app/Language/es/ErrorPresupuesto.php create mode 100644 ci4/app/Models/Presupuestos/ErrorPresupuesto.php create mode 100644 ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php create mode 100644 ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php create mode 100644 httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js create mode 100644 httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js create mode 100644 httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js create mode 100644 httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexView.js diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php index 4015ad4c..3405984e 100644 --- a/ci4/app/Config/Routes.php +++ b/ci4/app/Config/Routes.php @@ -93,6 +93,12 @@ $routes->group('configuracion', ['namespace' => 'App\Controllers\Configuracion'] $routes->delete('delete/(:num)', 'ConfigVariables::delete/$1', ['as' => 'deleteVariable']); $routes->get('datatable', 'ConfigVariables::datatable', ['as' => 'datatableVariables']); }); + $routes->group("errores-presupuesto",["namespace" => 'App\Controllers\Configuracion'],function($routes){ + $routes->get('', 'ErrorPresupuestoController::index', ['as' => 'errorPresupuestoIndex']); + $routes->get('edit', 'ErrorPresupuestoController::viewForm/$1', ['as' => 'errorPresupuestoFormIndex']); + $routes->get('datatable', 'ErrorPresupuestoController::datatable', ['as' => 'errorPresupuestoDatatable']); + $routes->post('edit/(:num)', 'ErrorPresupuestoController::update_error_presupuesto/$1', ['as' => 'updateErrorPresupuesto']); + }); }); diff --git a/ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php b/ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php new file mode 100644 index 00000000..0a5d0c28 --- /dev/null +++ b/ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php @@ -0,0 +1,80 @@ +errorPresupuestoModel = model(ErrorPresupuesto::class); + + } + + + public function index() + { + + $viewData = [ + 'currentModule' => static::$controllerSlug, + ]; + + $viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class + + return view(static::$viewPath . $this->indexRoute, $viewData); + } + public function viewForm(int $error_presupuesto_id) + { + + $viewData = [ + 'currentModule' => static::$controllerSlug, + 'errorPresupuesto' => $this->errorPresupuestoModel->find($error_presupuesto_id), + ]; + + return view(static::$viewPath . $this->indexRoute, $viewData); + + } + public function store(){ + $data = []; + $variableCreated = $this->errorPresupuestoModel->store($data); + return $this->response->setJSON($variableCreated); + } + public function get(int $error_presupuesto_id){ + $data = $this->errorPresupuestoModel->find($error_presupuesto_id); + return $this->response->setJSON($data); + } + public function updateErrorPresupuesto(int $error_presupuesto_id){ + + } + + public function datatable(){ + + $query = $this->errorPresupuestoModel->getQueryDatatable(); + return DataTable::of($query) + ->add("action",fn($q) => $q->id) + ->toJson(true); + } + + +} \ No newline at end of file diff --git a/ci4/app/Language/es/App.php b/ci4/app/Language/es/App.php index 57857bae..80a35a45 100755 --- a/ci4/app/Language/es/App.php +++ b/ci4/app/Language/es/App.php @@ -684,6 +684,7 @@ return [ "menu_configuration" => "Configuración", "menu_variables" => "Variables sistema", + "menu_error_presupuesto" => "Errores presupuesto", "menu_calendario" => "Calendario", "menu_paises" => "Paises", "menu_correo" => "Correo", diff --git a/ci4/app/Language/es/ErrorPresupuesto.php b/ci4/app/Language/es/ErrorPresupuesto.php new file mode 100644 index 00000000..2616f0b7 --- /dev/null +++ b/ci4/app/Language/es/ErrorPresupuesto.php @@ -0,0 +1,21 @@ + "Errores presupuesto", + + "datatable" => + [ + "columns" => [ + "presupuesto_user "=> "Usuario presupuesto", + "last_user_id" => "Último usuario", + "visto" => "Visto", + "created_at" => "Creado" + ] + ], + "form" => + [ + "name" => "Nombre", + "value" => "Valor", + "description" => "Descripción", + ] +]; diff --git a/ci4/app/Models/Presupuestos/ErrorPresupuesto.php b/ci4/app/Models/Presupuestos/ErrorPresupuesto.php new file mode 100644 index 00000000..09bd6f4f --- /dev/null +++ b/ci4/app/Models/Presupuestos/ErrorPresupuesto.php @@ -0,0 +1,86 @@ +insert([ + "presupuesto_id" => $presupuesto_id, + "presupuesto_user_id" => $presupuesto_user_id, + "error" => $error, + "datos" => json_encode($datos) + ]); + + } + public function getQueryDatatable() : BaseBuilder + { + $query = $this->builder() + ->select([ + "presupuesto_errores.id", + "CONCAT(t1.first_name,' ',t1.last_name) as presupuestoUser", + "CONCAT(t2.first_name,' ',t2.last_name) as lastUser", + "presupuestos.titulo as presupuestoTitulo", + "presupuesto_errores.created_at", + "presupuesto_errores.datos", + "presupuesto_errores.visto", + ]) + ->join("users t1","t1.id = presupuesto_errores.presupuesto_user_id","left") + ->join("users t2","t2.id = presupuesto_errores.last_user_id","left") + ->join("presupuestos","presupuestos.id = presupuesto_errores.presupuesto_id","left") + ->where("presupuesto_errores.deleted_at",null); + return $query; + } +} diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php new file mode 100644 index 00000000..0a3a4a5e --- /dev/null +++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php @@ -0,0 +1,52 @@ +include('themes/_commonPartialsBs/select2bs5') ?> +include('themes/_commonPartialsBs/datatables') ?> +include('themes/_commonPartialsBs/_confirm2delete') ?> +extend('themes/vuexy/main/defaultlayout') ?> + +section('content'); ?> +
+
+ +
+
+

[id ?>]Error presupuesto

+
+
+ + +
+ +
+
+
+
+
+
+
+
+
+ + + +
+
+
+
+
+ +
+ +
+
+ +endSection() ?> +section("additionalExternalJs") ?> + +endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php new file mode 100644 index 00000000..86d9d571 --- /dev/null +++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php @@ -0,0 +1,44 @@ +include('themes/_commonPartialsBs/select2bs5') ?> +include('themes/_commonPartialsBs/datatables') ?> +include('themes/_commonPartialsBs/_confirm2delete') ?> +extend('themes/vuexy/main/defaultlayout') ?> + +section('content'); ?> +
+
+ +
+
+

+
+
+ + + + + + + + + + + + + + + + + + +
#PresupuestoUsuario
+
+ +
+
+
+endSection() ?> +section("additionalExternalJs") ?> + +endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php b/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php index 6b1f65b9..d131ab86 100644 --- a/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php +++ b/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php @@ -105,6 +105,13 @@ if ( + user()->inGroup('admin') || auth()->user()->inGroup('beta')) { ?> + + \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js new file mode 100644 index 00000000..d4936882 --- /dev/null +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js @@ -0,0 +1,47 @@ + +class ErrorPresupuestoView { + constructor(domItem) { + this.item = domItem + this.datatableItem = this.item.find("#tableErrorPresupuesto") + this.datatableColumns = [ + { data: 'id', name: "id", searchable: true, sortable: false }, + { data: 'presupuestoTitulo',searchable: true, sortable: false }, + { data: 'presupuestoUser',searchable: true, sortable: false }, + { data: 'lastUser', searchable: true, sortable: false }, + { data: 'visto', searchable: false, sortable: false , + render : (d,t) => { + const iconClass = d ? "ti ti-sm ti-check" : "ti ti-sm ti-x" + return `` + } + }, + { data: 'created_at', searchable: false, sortable: true }, + { + data: 'action', sortable: false, searchable: false, + render: (d, t) => { + return ` +
+ +
+ ` + } + }, + ] + } + init() { + this.datatable = this.datatableItem.DataTable({ + processing: true, + dom: 'Brtip', + serverSide: true, + + language: { + url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json" + }, + columns: this.datatableColumns, + ajax: '/configuracion/errores-presupuesto/datatable' + }); + + } + +} + +export default ErrorPresupuestoView; \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js new file mode 100644 index 00000000..790b8e7f --- /dev/null +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js @@ -0,0 +1,44 @@ +import Ajax from "../../../components/ajax.js" + + + +class ErrorPresupuestoView { + constructor(domItem) { + this.item = domItem + this.datatableItem = this.item.find("#tableErrorPresupuesto") + this.datatableColumns = [ + { data: 'id', searchable: true, sortable: false }, + { data: 'presupuestoTitulo', searchable: true, sortable: false }, + { data: 'presupuestoUser', searchable: true, sortable: false }, + { data: 'visto', searchable: false, sortable: false }, + { data: 'lastUser', searchable: true, sortable: false }, + { + data: 'action', sortable: false, searchable: false, + render: (d, t) => { + return ` +
+ +
+ ` + } + }, + ] + } + init() { + this.datatable = this.datatableItem.DataTable({ + processing: true, + dom: 'Brtip', + serverSide: true, + + language: { + url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json" + }, + columns: this.datatableColumns, + ajax: '/configuracion/errores-presupuesto/datatable' + }); + + } + +} + +export default ErrorPresupuestoView; \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js new file mode 100644 index 00000000..e69de29b diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexView.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexView.js new file mode 100644 index 00000000..2d1f28b0 --- /dev/null +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexView.js @@ -0,0 +1,6 @@ +import ErrorPresupuestoView from "./errorPresupuesto.js"; + +$(document).ready(()=>{ + const errorPresupuesto = new ErrorPresupuestoView($("#errorPresupuestoCard")) + errorPresupuesto.init() +}) \ No newline at end of file diff --git a/xdebug.log b/xdebug.log index 0a9383a8..18265e14 100644 --- a/xdebug.log +++ b/xdebug.log @@ -25519,3 +25519,23 @@ [348] Log closed at 2024-10-17 17:34:23.659733 +[7640] Log opened at 2024-10-17 21:51:03.869662 +[7640] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.7640' +[7640] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[7640] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[7640] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[7640] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[7640] Log closed at 2024-10-17 21:51:04.556593 + +[9851] Log opened at 2024-10-17 21:54:30.472221 +[9851] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.9851' +[9851] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[9851] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[10190] Log opened at 2024-10-17 21:54:55.986235 +[10190] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.10190' +[10190] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[10190] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[10190] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[10190] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[10190] Log closed at 2024-10-17 21:55:14.675874 + From f1df4559f7751101b2c6cffe5803dff67b497c16 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Fri, 18 Oct 2024 16:00:10 +0200 Subject: [PATCH 2/3] error presupuestos --- ci4/app/Config/Routes.php | 58 +- .../Configuracion/ConfigErrores.php | 69 + .../Configuracion/ConfigVariables.php | 28 +- .../ErrorPresupuestoController.php | 80 - ci4/app/Language/es/ErrorPresupuesto.php | 6 +- .../Models/Presupuestos/ErrorPresupuesto.php | 45 +- .../viewErrorPresupuestoForm.php | 80 +- .../viewErrorPresupuestoList.php | 26 +- .../vuexy/main/menus/configuracion_menu.php | 198 +- .../error_presupuesto/errorPresupuesto.js | 3 +- .../error_presupuesto/errorPresupuestoForm.js | 88 +- .../error_presupuesto/indexForm.js | 6 + xdebug.log | 6998 +++++++++++++++++ 13 files changed, 7367 insertions(+), 318 deletions(-) create mode 100644 ci4/app/Controllers/Configuracion/ConfigErrores.php delete mode 100644 ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php index 3405984e..a30c3860 100644 --- a/ci4/app/Config/Routes.php +++ b/ci4/app/Config/Routes.php @@ -1,6 +1,7 @@ group('tarifas', ['namespace' => 'App\Controllers\Tarifas'], function ( $routes->get('delete/(:num)', 'TarifaAcabadosLineas::delete/$1', ['as' => 'tarifaAcabadoLineasDelete']); }); }); - }); /* Rutas para configuraciones */ @@ -65,7 +65,6 @@ $routes->group('configuracion', ['namespace' => 'App\Controllers\Configuracion'] $routes->match(['get', 'post'], 'edit/(:num)', 'Ubicaciones::edit/$1', ['as' => 'ubicacionesEdit']); $routes->get('delete/(:num)', 'Ubicaciones::delete/$1', ['as' => 'ubicacionesDelete']); $routes->post('datatable', 'Ubicaciones::datatable', ['as' => 'ubicacionesDT']); - }); /* Series Factura */ @@ -86,20 +85,20 @@ $routes->group('configuracion', ['namespace' => 'App\Controllers\Configuracion'] $routes->get('delete/(:num)', 'FormasPago::delete/$1', ['as' => 'formasPagoDelete']); $routes->post('datatable', 'FormasPago::datatable', ['as' => 'formasPagoDT']); }); - $routes->group("variables",["namespace" => 'App\Controllers\Configuracion'],function($routes){ + $routes->group("variables", ["namespace" => 'App\Controllers\Configuracion'], function ($routes) { $routes->get('', 'ConfigVariables::index', ['as' => 'variablesIndex']); $routes->get('find/(:num)', 'ConfigVariables::get/$1', ['as' => 'variablesFind']); $routes->post('edit/(:num)', 'ConfigVariables::updateVariable/$1', ['as' => 'updateVariable']); $routes->delete('delete/(:num)', 'ConfigVariables::delete/$1', ['as' => 'deleteVariable']); $routes->get('datatable', 'ConfigVariables::datatable', ['as' => 'datatableVariables']); }); - $routes->group("errores-presupuesto",["namespace" => 'App\Controllers\Configuracion'],function($routes){ - $routes->get('', 'ErrorPresupuestoController::index', ['as' => 'errorPresupuestoIndex']); - $routes->get('edit', 'ErrorPresupuestoController::viewForm/$1', ['as' => 'errorPresupuestoFormIndex']); - $routes->get('datatable', 'ErrorPresupuestoController::datatable', ['as' => 'errorPresupuestoDatatable']); - $routes->post('edit/(:num)', 'ErrorPresupuestoController::update_error_presupuesto/$1', ['as' => 'updateErrorPresupuesto']); + $routes->group("errores-presupuesto", ["namespace" => 'App\Controllers\Configuracion'], function ($routes) { + $routes->get('', 'ConfigErrores::index', ['as' => 'erroresPresupuestoIndex']); + $routes->get('edit/(:num)', 'ConfigErrores::viewForm/$1', ['as' => 'erroresPresupuestoViewForm']); + $routes->get('get/(:num)', 'ConfigErrores::get_error_presupuesto/$1', ['as' => 'erroresPresupuestoGetErrorPresupuesto']); + $routes->get('datatable', 'ConfigErrores::datatable', ['as' => 'erroresPresupuestoDatatable']); + $routes->post('edit/(:num)', 'ConfigErrores::update_error_presupuesto/$1', ['as' => 'erroresPresupuestoUpdate']); }); - }); @@ -379,7 +378,6 @@ $routes->group('clientes', ['namespace' => 'App\Controllers\Clientes'], function $routes->post('menuitems', 'Cliente::menuItems', ['as' => 'menuItemsOfClientes']); $routes->get('getSelect2', 'Cliente::getSelect2', ['as' => 'getListaSelect2']); }); - }); @@ -573,7 +571,7 @@ $routes->group('cosidotapablanda', ['namespace' => 'App\Controllers\Presupuestos $routes->resource('cosidotapablanda', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Cosidotapablanda', 'except' => 'show,new,create,update']); $routes->group('presupuestocliente', ['namespace' => 'App\Controllers\Presupuestos'], function ($routes) { - $routes->get('list', 'Presupuestocliente::list', ['as' => 'listaPresupuestos']); + $routes->get('list', 'Presupuestocliente::list', ['as' => 'listaPresupuestos']); $routes->post('datatable', 'Presupuestocliente::datatable', ['as' => 'datatableOfPresupuestos']); $routes->get('add', 'Presupuestocliente::add', ['as' => 'nuevoPresupuestoCliente']); $routes->post('add', 'Presupuestocliente::add', ['as' => 'crearPresupuestoCliente']); @@ -600,7 +598,6 @@ $routes->group('serviciosencuadernaciones', ['namespace' => 'App\Controllers\Pre $routes->post('menuitems', 'Presupuestoencuadernaciones::menuItems', ['as' => 'menuItemsOfPresupuestoEncuadernaciones']); $routes->get('delete/(:num)', 'Presupuestoencuadernaciones::delete/$1', ['as' => 'deletePresupuestoencuadernaciones']); $routes->post('edit/(:num)', 'Presupuestoencuadernaciones::edit/$1', ['as' => 'updatePresupuestoencuadernaciones']); - }); $routes->group('serviciosmanipulados', ['namespace' => 'App\Controllers\Presupuestos'], function ($routes) { @@ -626,13 +623,13 @@ $routes->group('presupuestodirecciones', ['namespace' => 'App\Controllers\Presup $routes->group('presupuestotiradasalternativas', ['namespace' => 'App\Controllers\Presupuestos'], function ($routes) { $routes->post('datatable', 'Presupuestotiradasalternativas::datatable', ['as' => 'dataTableOfPresupuestoTiradasAlternativas']); $routes->post('datatable_2', 'Presupuestotiradasalternativas::datatable_2', ['as' => 'getTiradaData']); -}); +}); $routes->group('pedidos', ['namespace' => 'App\Controllers\Pedidos'], function ($routes) { $routes->get('list', 'Pedido::todos', ['as' => 'listaPresupuestos']); - $routes->get('listActivos', 'Pedido::activos', ['as' => 'listaPresupuestosActivos']); - $routes->get('listFinalizados', 'Pedido::finalizados', ['as' => 'listaFinalizados']); - $routes->get('listCancelados', 'Pedido::cancelados', ['as' => 'listaCancelados']); + $routes->get('listActivos', 'Pedido::activos', ['as' => 'listaPresupuestosActivos']); + $routes->get('listFinalizados', 'Pedido::finalizados', ['as' => 'listaFinalizados']); + $routes->get('listCancelados', 'Pedido::cancelados', ['as' => 'listaCancelados']); $routes->post('datatable', 'Pedido::datatable', ['as' => 'dataTableOfPedidos']); $routes->get('add', 'Pedido::add', ['as' => 'nuevoPedido']); $routes->post('add', 'Pedido::add', ['as' => 'crearPedido']); @@ -640,9 +637,7 @@ $routes->group('pedidos', ['namespace' => 'App\Controllers\Pedidos'], function ( $routes->post('getlineas', 'Pedido::getLineas', ['as' => 'tablaLineasPedido']); $routes->post('cambiarestado', 'Pedido::cambiarEstado', ['as' => 'cambiarEstadoPedido']); $routes->post('update/(:any)', 'Pedido::update/$1', ['as' => 'actualizarPedido']); - $routes->get('xml/(:num)', 'Pedido::get_xml_pedido/$1',['as' => 'getXMLPedido']); - - + $routes->get('xml/(:num)', 'Pedido::get_xml_pedido/$1', ['as' => 'getXMLPedido']); }); $routes->resource('pedidos', ['namespace' => 'App\Controllers\Pedidos', 'controller' => 'Pedido', 'except' => 'show,new,create,update']); @@ -729,7 +724,10 @@ $routes->group( } ); -$routes->group('buscadorpresupuestos', ['namespace' => 'App\Controllers\Presupuestos'], function ($routes) { +$routes->group( + 'buscadorpresupuestos', + ['namespace' => 'App\Controllers\Presupuestos'], + function ($routes) { $routes->get('', 'Buscador::list', ['as' => 'buscadorPresupuestosList']); $routes->post('datatable', 'Buscador::datatable', ['as' => 'dataTableOfBuscador']); } @@ -737,7 +735,10 @@ $routes->group('buscadorpresupuestos', ['namespace' => 'App\Controllers\Presupue $routes->resource('buscadorpresupuestos', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Buscador', 'except' => 'show,new,create,update']); -$routes->group('papel-formato', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) { +$routes->group( + 'papel-formato', + ['namespace' => 'App\Controllers\Configuracion'], + function ($routes) { $routes->post('menuitems', 'Papelformato::menuitems', ['as' => 'menuitems']); $routes->get('getSelect2', 'Papelformato::getSelect2', ['as' => 'getSelect2']); } @@ -758,9 +759,7 @@ $routes->group('mensajes', ['namespace' => 'App\Controllers\Mensajeria'], functi $routes->match(['get', 'post'], 'edit/(:num)', 'TarifaAcabados::edit/$1', ['as' => 'tarifaAcabadoEdit']); $routes->get('delete/(:num)', 'TarifaAcabados::delete/$1', ['as' => 'tarifaAcabadoDelete']); $routes->post('datatable', 'TarifaAcabados::datatable', ['as' => 'tarifaAcabadoDT']);*/ - }); - }); $routes->group('chat', ['namespace' => 'App\Controllers\Chat'], function ($routes) { $routes->get('departments', 'ChatController::get_chat_departments', ['as' => 'getChatDepartments']); @@ -784,14 +783,9 @@ $routes->group('chat', ['namespace' => 'App\Controllers\Chat'], function ($route $routes->post('hebra/pedido', 'ChatController::store_hebra_pedido', ['as' => 'storeHebraPedido']); $routes->post('hebra/factura', 'ChatController::store_hebra_factura', ['as' => 'storeHebraFactura']); $routes->post('hebra/(:num)', 'ChatController::update_hebra/$1', ['as' => 'updateHebra']); - $routes->get('hebra/presupuesto/(:num)',"ChatController::get_hebra_presupuesto/$1",["as" => "getHebraPresupuesto"]); - $routes->get('hebra/pedido/(:num)',"ChatController::get_hebra_pedido/$1",["as" => "getHebraPedido"]); - $routes->get('hebra/factura/(:num)',"ChatController::get_hebra_factura/$1",["as" => "getHebraFactura"]); - - - - - + $routes->get('hebra/presupuesto/(:num)', "ChatController::get_hebra_presupuesto/$1", ["as" => "getHebraPresupuesto"]); + $routes->get('hebra/pedido/(:num)', "ChatController::get_hebra_pedido/$1", ["as" => "getHebraPedido"]); + $routes->get('hebra/factura/(:num)', "ChatController::get_hebra_factura/$1", ["as" => "getHebraFactura"]); }); @@ -833,4 +827,4 @@ $routes->resource('translate', ['namespace' => 'App\Controllers', 'controller' = */ if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php')) { require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php'; -} +} \ No newline at end of file diff --git a/ci4/app/Controllers/Configuracion/ConfigErrores.php b/ci4/app/Controllers/Configuracion/ConfigErrores.php new file mode 100644 index 00000000..6346507d --- /dev/null +++ b/ci4/app/Controllers/Configuracion/ConfigErrores.php @@ -0,0 +1,69 @@ +errorPresupuestoModel = model(ErrorPresupuestoModel::class); + } + + + public function index() + { + + return view(static::$viewPath . $this->indexRoute, $this->viewData); + } + public function viewForm(int $error_presupuesto_id) + { + return view(static::$viewPath . 'viewErrorPresupuestoForm', ["error_presupuesto_id" => $error_presupuesto_id]); + } + public function store() + { + $data = []; + $variableCreated = $this->errorPresupuestoModel->store($data); + return $this->response->setJSON($variableCreated); + } + public function get_error_presupuesto(int $error_presupuesto_id) + { + $data = $this->errorPresupuestoModel->getQueryDatatable() + ->where("presupuesto_errores.id", $error_presupuesto_id)->get()->getResultObject()[0]; + return $this->response->setJSON(["data" => $data]); + } + public function update_error_presupuesto(int $error_presupuesto_id) + { + $bodyData = $this->request->getPost(); + $this->errorPresupuestoModel->updateComment($error_presupuesto_id, $bodyData["comments"]); + return $this->response->setJSON(["message" => "Comentario actualizado", "status" => true]); + } + + public function datatable() + { + + $query = $this->errorPresupuestoModel->getQueryDatatable(); + return DataTable::of($query) + ->add("action", fn($q) => $q->id) + ->toJson(true); + } +} \ No newline at end of file diff --git a/ci4/app/Controllers/Configuracion/ConfigVariables.php b/ci4/app/Controllers/Configuracion/ConfigVariables.php index 23c8c96d..1455c93c 100644 --- a/ci4/app/Controllers/Configuracion/ConfigVariables.php +++ b/ci4/app/Controllers/Configuracion/ConfigVariables.php @@ -33,7 +33,6 @@ class ConfigVariables extends BaseResourceController parent::initController($request, $response, $logger); $this->configVariableModel = model(ConfigVariableModel::class); - } @@ -48,45 +47,46 @@ class ConfigVariables extends BaseResourceController return view(static::$viewPath . $this->indexRoute, $viewData); } - public function store(){ + public function store() + { $data = []; $variableCreated = $this->configVariableModel->store($data); return $this->response->setJSON($variableCreated); } - public function get(int $config_variable_id){ + public function get(int $config_variable_id) + { $data = $this->configVariableModel->find($config_variable_id); return $this->response->setJSON($data); } - public function updateVariable(int $config_variable_id){ + public function updateVariable(int $config_variable_id) + { $reqData = []; if ($this->request->isAJAX()) { $reqData = $this->request->getPost(); - $status = $this->configVariableModel->update($config_variable_id,$reqData); + $status = $this->configVariableModel->update($config_variable_id, $reqData); return $this->response->setJSON([ "message" => "Variable actualizada correctamente", "status" => $status ]); - } - else { + } else { return $this->failUnauthorized('Invalid request', 403); } } public function deleteVariable(int $config_variable_id): Response { return $this->response->setJSON([]); - } - public function datatable(){ + public function datatable() + { $query = $this->configVariableModel->builder()->select([ "id", "name", "value", - "description"])->orderBy("name","asc"); + "description" + ])->orderBy("name", "asc"); return DataTable::of($query) - ->add("action",fn($q) => $q->id) - ->toJson(true); + ->add("action", fn($q) => $q->id) + ->toJson(true); } - - } \ No newline at end of file diff --git a/ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php b/ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php deleted file mode 100644 index 0a5d0c28..00000000 --- a/ci4/app/Controllers/Configuracion/ErrorPresupuestoController.php +++ /dev/null @@ -1,80 +0,0 @@ -errorPresupuestoModel = model(ErrorPresupuesto::class); - - } - - - public function index() - { - - $viewData = [ - 'currentModule' => static::$controllerSlug, - ]; - - $viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class - - return view(static::$viewPath . $this->indexRoute, $viewData); - } - public function viewForm(int $error_presupuesto_id) - { - - $viewData = [ - 'currentModule' => static::$controllerSlug, - 'errorPresupuesto' => $this->errorPresupuestoModel->find($error_presupuesto_id), - ]; - - return view(static::$viewPath . $this->indexRoute, $viewData); - - } - public function store(){ - $data = []; - $variableCreated = $this->errorPresupuestoModel->store($data); - return $this->response->setJSON($variableCreated); - } - public function get(int $error_presupuesto_id){ - $data = $this->errorPresupuestoModel->find($error_presupuesto_id); - return $this->response->setJSON($data); - } - public function updateErrorPresupuesto(int $error_presupuesto_id){ - - } - - public function datatable(){ - - $query = $this->errorPresupuestoModel->getQueryDatatable(); - return DataTable::of($query) - ->add("action",fn($q) => $q->id) - ->toJson(true); - } - - -} \ No newline at end of file diff --git a/ci4/app/Language/es/ErrorPresupuesto.php b/ci4/app/Language/es/ErrorPresupuesto.php index 2616f0b7..d2b8d972 100644 --- a/ci4/app/Language/es/ErrorPresupuesto.php +++ b/ci4/app/Language/es/ErrorPresupuesto.php @@ -6,8 +6,8 @@ return [ "datatable" => [ "columns" => [ - "presupuesto_user "=> "Usuario presupuesto", - "last_user_id" => "Último usuario", + "usuario" => "Usuario presupuesto", + "last_user_id" => "Último accesso", "visto" => "Visto", "created_at" => "Creado" ] @@ -18,4 +18,4 @@ return [ "value" => "Valor", "description" => "Descripción", ] -]; +]; \ No newline at end of file diff --git a/ci4/app/Models/Presupuestos/ErrorPresupuesto.php b/ci4/app/Models/Presupuestos/ErrorPresupuesto.php index 09bd6f4f..0c4fa122 100644 --- a/ci4/app/Models/Presupuestos/ErrorPresupuesto.php +++ b/ci4/app/Models/Presupuestos/ErrorPresupuesto.php @@ -10,7 +10,7 @@ class ErrorPresupuesto extends Model protected $table = 'presupuesto_errores'; protected $primaryKey = 'id'; protected $useAutoIncrement = true; - protected $returnType = 'array'; + protected $returnType = 'object'; protected $useSoftDeletes = false; protected $protectFields = true; protected $allowedFields = [ @@ -20,6 +20,7 @@ class ErrorPresupuesto extends Model "datos_presupuesto", "visto", "last_user_id", + "comment", "created_at", "updated_at", "deleted_at", @@ -55,7 +56,7 @@ class ErrorPresupuesto extends Model protected $beforeDelete = []; protected $afterDelete = []; - public function insertError(int $presupuesto_id,int $presupuesto_user_id,string $error,mixed $datos) + public function insertError(int $presupuesto_id, int $presupuesto_user_id, string $error, mixed $datos) { $this->insert([ "presupuesto_id" => $presupuesto_id, @@ -63,24 +64,32 @@ class ErrorPresupuesto extends Model "error" => $error, "datos" => json_encode($datos) ]); - } - public function getQueryDatatable() : BaseBuilder + public function updateComment(int $error_presupuesto_id, string $comment): bool + { + $updated = $this->update($error_presupuesto_id, [ + "comment" => $comment + ]); + return $updated; + } + public function getQueryDatatable(): BaseBuilder { $query = $this->builder() - ->select([ - "presupuesto_errores.id", - "CONCAT(t1.first_name,' ',t1.last_name) as presupuestoUser", - "CONCAT(t2.first_name,' ',t2.last_name) as lastUser", - "presupuestos.titulo as presupuestoTitulo", - "presupuesto_errores.created_at", - "presupuesto_errores.datos", - "presupuesto_errores.visto", - ]) - ->join("users t1","t1.id = presupuesto_errores.presupuesto_user_id","left") - ->join("users t2","t2.id = presupuesto_errores.last_user_id","left") - ->join("presupuestos","presupuestos.id = presupuesto_errores.presupuesto_id","left") - ->where("presupuesto_errores.deleted_at",null); + ->select([ + "presupuesto_errores.id", + "presupuestos.id as presupuestoId", + "CONCAT(t1.first_name,' ',t1.last_name) as presupuestoUser", + "CONCAT(t2.first_name,' ',t2.last_name) as lastUser", + "presupuesto_errores.created_at", + "presupuesto_errores.datos", + "presupuesto_errores.visto", + "presupuesto_errores.comment", + + ]) + ->join("users t1", "t1.id = presupuesto_errores.presupuesto_user_id", "left") + ->join("users t2", "t2.id = presupuesto_errores.last_user_id", "left") + ->join("presupuestos", "presupuestos.id = presupuesto_errores.presupuesto_id", "left") + ->where("presupuesto_errores.deleted_at", null); return $query; } -} +} \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php index 0a3a4a5e..8f57bb37 100644 --- a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php +++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php @@ -9,44 +9,68 @@
-

[id ?>]Error presupuesto

-
-
+

Error presupuesto

+
+ +
-
- -
-
-
-
-
-
+ + +
+
+ + +
+
+ +
+
+
+
+ +
-
-
- - +
+ +
+ +
- -
+
+
-
+
+ -
-
- + + + + + + + endSection() ?> section("additionalExternalJs") ?> - + endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php index 86d9d571..08069a3b 100644 --- a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php +++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoList.php @@ -10,7 +10,8 @@

-
+
+
@@ -18,9 +19,8 @@ - - - + + @@ -31,14 +31,20 @@
#PresupuestoUsuarioID Presupuesto
-
+ + - - - + + + + + + + + endSection() ?> section("additionalExternalJs") ?> - + endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php b/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php index d131ab86..2b556ebd 100644 --- a/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php +++ b/ci4/app/Views/themes/vuexy/main/menus/configuracion_menu.php @@ -14,104 +14,104 @@ if ( auth()->user()->can('roles-permisos.menu') ) { ?> - \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js index d4936882..904e11ec 100644 --- a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuesto.js @@ -4,8 +4,7 @@ class ErrorPresupuestoView { this.item = domItem this.datatableItem = this.item.find("#tableErrorPresupuesto") this.datatableColumns = [ - { data: 'id', name: "id", searchable: true, sortable: false }, - { data: 'presupuestoTitulo',searchable: true, sortable: false }, + { data: 'presupuestoId', searchable: true, sortable: false }, { data: 'presupuestoUser',searchable: true, sortable: false }, { data: 'lastUser', searchable: true, sortable: false }, { data: 'visto', searchable: false, sortable: false , diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js index 790b8e7f..bbf0510c 100644 --- a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js @@ -1,44 +1,68 @@ -import Ajax from "../../../components/ajax.js" +import Ajax from "../../../components/ajax.js"; +import ajax from "../../../components/ajax.js" -class ErrorPresupuestoView { +class ErrorPresupuestoForm { constructor(domItem) { this.item = domItem - this.datatableItem = this.item.find("#tableErrorPresupuesto") - this.datatableColumns = [ - { data: 'id', searchable: true, sortable: false }, - { data: 'presupuestoTitulo', searchable: true, sortable: false }, - { data: 'presupuestoUser', searchable: true, sortable: false }, - { data: 'visto', searchable: false, sortable: false }, - { data: 'lastUser', searchable: true, sortable: false }, - { - data: 'action', sortable: false, searchable: false, - render: (d, t) => { - return ` -
- -
- ` - } - }, - ] + this.form = this.item.find("#error-presupuesto-form") + this.inputPresupuestoUserId = this.item.find("#presupuesto-user-id") + this.inputDatos = this.item.find("#datos-presupuesto") + this.inputComments = this.item.find("#comments-presupuesto") + this.errorPresupuestoId = this.item.find("#error-presupuesto-id").attr("value") + this.updateBtnIcon = this.item.find("#update-button-icon") } init() { - this.datatable = this.datatableItem.DataTable({ - processing: true, - dom: 'Brtip', - serverSide: true, - - language: { - url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json" - }, - columns: this.datatableColumns, - ajax: '/configuracion/errores-presupuesto/datatable' - }); + this.item.on("click",".button-update-comment",this.handlePostErrorPresupuesto.bind(this)) + this.handleGetErrorPresupuesto() + } + handleGetErrorPresupuesto() + { + const ajax = new Ajax( + `/configuracion/errores-presupuesto/get/${this.errorPresupuestoId}`, + null, + null, + this.handleGetErrorPresupuestoSuccess.bind(this), + this.handleGetErrorPresupuestoError.bind(this) + ) + ajax.get() + } + handleGetErrorPresupuestoSuccess(data){ + this.inputPresupuestoUserId.val(data.data.presupuestoUser) + this.inputDatos.val(data.data.datos) + this.inputComments.val(data.data.comment) + this.updateBtnIcon.removeClass() + this.updateBtnIcon.addClass("ti ti-md ti-send") } + handleGetErrorPresupuestoError(){} + handlePostErrorPresupuesto() + { + let data = + { + "comments" : this.inputComments.val() + } + this.updateBtnIcon.removeClass() + this.updateBtnIcon.addClass("spinner-border spinner-border-lg text-secondary") + const ajax = new Ajax( + `/configuracion/errores-presupuesto/edit/${this.errorPresupuestoId}`, + data, + null, + this.handlePostErrorPresupuestoSuccess.bind(this), + this.handlePostErrorPresupuestoError.bind(this) + ) + ajax.post() + } + handlePostErrorPresupuestoSuccess(){ + this.updateBtnIcon.removeClass() + this.updateBtnIcon.addClass("ti ti-md ti-check") + + this.handleGetErrorPresupuesto() + } + handlePostErrorPresupuestoError(error){} + } -export default ErrorPresupuestoView; \ No newline at end of file +export default ErrorPresupuestoForm; \ No newline at end of file diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js index e69de29b..f7ceb41c 100644 --- a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/indexForm.js @@ -0,0 +1,6 @@ +import ErrorPresupuestoForm from "./errorPresupuestoForm.js"; + +$(document).ready(() => { + const errorPresupuestoForm = new ErrorPresupuestoForm($("#error-presupuesto-container")) + errorPresupuestoForm.init() +}) \ No newline at end of file diff --git a/xdebug.log b/xdebug.log index 18265e14..142842f3 100644 --- a/xdebug.log +++ b/xdebug.log @@ -25539,3 +25539,7001 @@ [10190] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). [10190] Log closed at 2024-10-17 21:55:14.675874 +[22] Log opened at 2024-10-18 10:35:43.553763 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log opened at 2024-10-18 10:35:43.762973 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] Log opened at 2024-10-18 10:35:43.939294 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:35:44.610095 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:35:44.774349 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:35:45.274337 + +[27] Log opened at 2024-10-18 10:35:48.187732 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:35:49.207024 + +[27] Log opened at 2024-10-18 10:35:49.250936 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:35:49.880859 + +[23] Log opened at 2024-10-18 10:35:49.962055 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 10:35:49.963961 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:35:50.746150 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:35:51.493974 + +[24] Log opened at 2024-10-18 10:36:50.485536 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:36:51.498895 + +[30] Log opened at 2024-10-18 10:36:51.517464 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:36:52.149387 + +[28] Log opened at 2024-10-18 10:36:52.193969 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] Log opened at 2024-10-18 10:36:52.202770 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:36:52.972597 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:36:53.700470 + +[30] Log opened at 2024-10-18 10:36:56.015025 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:36:57.066532 + +[30] Log opened at 2024-10-18 10:36:57.083920 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:36:57.714227 + +[30] Log opened at 2024-10-18 10:36:57.778789 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 10:36:57.784846 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 10:36:57.819116 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:36:58.550859 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:36:59.319375 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:36:59.726259 + +[27] Log opened at 2024-10-18 10:37:07.930595 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:37:08.802164 + +[24] Log opened at 2024-10-18 10:39:15.290621 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:39:16.170295 + +[24] Log opened at 2024-10-18 10:39:16.187335 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:39:17.059112 + +[24] Log opened at 2024-10-18 10:39:17.151347 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:39:18.027669 + +[22] Log opened at 2024-10-18 10:39:49.724259 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:39:50.602172 + +[25] Log opened at 2024-10-18 10:39:56.932277 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:39:57.811755 + +[30] Log opened at 2024-10-18 10:40:52.482002 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:40:53.359311 + +[29] Log opened at 2024-10-18 10:41:56.504559 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:41:57.382412 + +[29] Log opened at 2024-10-18 10:42:02.334837 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:42:03.214309 + +[23] Log opened at 2024-10-18 10:42:18.710642 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:42:19.585860 + +[26] Log opened at 2024-10-18 10:42:27.064835 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:42:28.159842 + +[27] Log opened at 2024-10-18 10:42:45.254746 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:42:46.368150 + +[28] Log opened at 2024-10-18 10:43:29.387132 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:43:30.435067 + +[28] Log opened at 2024-10-18 10:43:30.462776 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:43:31.095966 + +[24] Log opened at 2024-10-18 10:43:31.173744 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] Log opened at 2024-10-18 10:43:31.175480 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] Log opened at 2024-10-18 10:43:31.257379 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:43:31.946083 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:43:32.572342 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:43:32.984108 + +[22] Log opened at 2024-10-18 10:43:34.104753 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:43:34.981994 + +[30] Log opened at 2024-10-18 10:44:51.719073 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:44:52.596532 + +[30] Log opened at 2024-10-18 10:44:53.421817 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:44:54.298387 + +[29] Log opened at 2024-10-18 10:45:38.036268 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:45:38.912565 + +[23] Log opened at 2024-10-18 10:45:48.753241 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:45:49.627385 + +[23] Log opened at 2024-10-18 10:45:50.799822 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:45:51.673404 + +[26] Log opened at 2024-10-18 10:47:27.503054 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:47:28.380136 + +[26] Log opened at 2024-10-18 10:47:28.415852 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:47:29.292553 + +[27] Log opened at 2024-10-18 10:47:34.336615 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:47:35.216471 + +[28] Log opened at 2024-10-18 10:47:44.777998 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:47:45.819791 + +[28] Log opened at 2024-10-18 10:47:45.849031 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:47:46.482733 + +[25] Log opened at 2024-10-18 10:47:46.552538 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] Log opened at 2024-10-18 10:47:46.558584 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 10:47:46.642816 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:47:47.334272 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:47:47.954016 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:47:48.361488 + +[22] Log opened at 2024-10-18 10:47:49.369247 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:47:50.241639 + +[30] Log opened at 2024-10-18 10:49:00.033446 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:49:00.906176 + +[30] Log opened at 2024-10-18 10:49:01.995655 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:49:02.871617 + +[30] Log opened at 2024-10-18 10:49:03.597006 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:49:04.473299 + +[29] Log opened at 2024-10-18 10:49:12.851360 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:49:13.899530 + +[29] Log opened at 2024-10-18 10:49:13.924693 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:49:14.554849 + +[23] Log opened at 2024-10-18 10:49:14.623179 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 10:49:14.629884 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 10:49:14.711806 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:49:15.398117 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:49:16.005401 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:49:16.410601 + +[29] Log opened at 2024-10-18 10:49:18.200197 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:49:19.079884 + +[27] Log opened at 2024-10-18 10:49:32.243401 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:49:33.285912 + +[27] Log opened at 2024-10-18 10:49:33.313665 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:49:33.943984 + +[24] Log opened at 2024-10-18 10:49:34.017091 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 10:49:34.019627 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] Log opened at 2024-10-18 10:49:34.070855 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:49:34.783929 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:49:34.942981 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:49:35.379651 + +[28] Log opened at 2024-10-18 10:49:41.781369 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:49:42.801294 + +[28] Log opened at 2024-10-18 10:49:42.828085 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:49:43.456615 + +[22] Log opened at 2024-10-18 10:49:43.525238 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 10:49:43.529419 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] Log opened at 2024-10-18 10:49:43.583179 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:49:44.298989 + +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-10-18 10:49:44.456747 + +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-18 10:49:44.914864 + +[26] Log opened at 2024-10-18 10:50:12.867239 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:50:13.899481 + +[26] Log opened at 2024-10-18 10:50:13.927590 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:50:14.556163 + +[29] Log opened at 2024-10-18 10:50:14.654584 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 10:50:14.655957 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 10:50:14.725021 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:50:15.421944 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:50:16.028453 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:50:16.433857 + +[29] Log opened at 2024-10-18 10:50:17.648602 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:50:18.525045 + +[23] Log opened at 2024-10-18 10:51:15.759403 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:51:16.638047 + +[23] Log opened at 2024-10-18 10:51:16.675853 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] Log opened at 2024-10-18 10:51:17.537930 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:51:17.556917 + +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 10:51:18.416857 + +[80] Log opened at 2024-10-18 10:51:18.448106 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 10:51:19.323177 + +[81] Log opened at 2024-10-18 10:51:48.105341 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 10:51:48.986269 + +[81] Log opened at 2024-10-18 10:51:50.198898 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 10:51:51.069607 + +[81] Log opened at 2024-10-18 10:51:53.799109 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 10:51:54.671554 + +[81] Log opened at 2024-10-18 10:51:55.507363 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 10:51:56.386255 + +[82] Log opened at 2024-10-18 10:52:06.271772 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 10:52:07.144281 + +[26] Log opened at 2024-10-18 10:52:26.498570 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:52:27.376943 + +[28] Log opened at 2024-10-18 10:52:40.633147 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:52:41.678160 + +[28] Log opened at 2024-10-18 10:52:41.713057 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:52:42.343512 + +[25] Log opened at 2024-10-18 10:52:42.411734 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 10:52:42.421205 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 10:52:42.490721 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:52:43.184828 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:52:43.818466 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:52:44.224092 + +[24] Log opened at 2024-10-18 10:54:56.824527 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:54:57.701869 + +[24] Log opened at 2024-10-18 10:55:00.576175 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:55:01.615135 + +[29] Log opened at 2024-10-18 10:55:01.644022 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:55:02.273073 + +[29] Log opened at 2024-10-18 10:55:02.345818 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 10:55:02.355837 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] Log opened at 2024-10-18 10:55:02.396325 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:55:03.127202 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 10:55:03.726700 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 10:55:04.130754 + +[24] Log opened at 2024-10-18 10:55:05.625444 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:55:06.744824 + +[80] Log opened at 2024-10-18 10:55:24.663541 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 10:55:25.805644 + +[81] Log opened at 2024-10-18 10:55:43.965400 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 10:55:45.104395 + +[82] Log opened at 2024-10-18 10:55:55.412356 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 10:55:56.486594 + +[82] Log opened at 2024-10-18 10:55:56.513142 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 10:55:56.519941 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 10:55:57.142005 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 10:55:57.217810 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:55:57.396371 + +[26] Log opened at 2024-10-18 10:55:57.412016 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 10:55:58.450865 + +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 10:55:58.796228 + +[25] Log opened at 2024-10-18 10:57:01.861794 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:57:02.914432 + +[25] Log opened at 2024-10-18 10:57:02.938502 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 10:57:03.568314 + +[24] Log opened at 2024-10-18 10:57:03.638140 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 10:57:03.640576 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 10:57:04.411606 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 10:57:05.065955 + +[29] Log opened at 2024-10-18 11:08:16.854490 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:08:17.896734 + +[29] Log opened at 2024-10-18 11:08:17.919489 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:08:18.549523 + +[23] Log opened at 2024-10-18 11:08:18.621759 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] Log opened at 2024-10-18 11:08:18.630827 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:08:19.399361 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:08:20.017557 + +[81] Log opened at 2024-10-18 11:10:10.216684 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:10:11.270437 + +[81] Log opened at 2024-10-18 11:10:11.292983 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:10:11.922528 + +[82] Log opened at 2024-10-18 11:10:11.994895 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 11:10:11.998365 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:10:12.768291 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:10:13.392290 + +[27] Log opened at 2024-10-18 11:11:09.936771 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:11:11.009853 + +[27] Log opened at 2024-10-18 11:11:11.031807 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:11:11.663493 + +[26] Log opened at 2024-10-18 11:11:11.731599 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 11:11:11.739649 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:11:12.504903 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:11:13.118174 + +[28] Log opened at 2024-10-18 11:11:18.208368 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:11:19.247156 + +[28] Log opened at 2024-10-18 11:11:19.266888 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:11:19.895937 + +[24] Log opened at 2024-10-18 11:11:19.965946 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:11:19.967673 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:11:20.741935 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:11:21.371812 + +[29] Log opened at 2024-10-18 11:11:33.873341 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:11:34.914353 + +[29] Log opened at 2024-10-18 11:11:34.937640 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:11:35.567860 + +[80] Log opened at 2024-10-18 11:11:35.638149 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:11:35.642761 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:11:36.411513 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:11:37.017090 + +[81] Log opened at 2024-10-18 11:11:44.701566 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:11:45.768322 + +[81] Log opened at 2024-10-18 11:11:45.785622 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:11:46.416400 + +[82] Log opened at 2024-10-18 11:11:46.482785 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 11:11:46.492896 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:11:47.274840 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:11:47.904432 + +[25] Log opened at 2024-10-18 11:12:08.560680 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:12:09.619935 + +[25] Log opened at 2024-10-18 11:12:09.637209 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:12:10.266610 + +[26] Log opened at 2024-10-18 11:12:10.334161 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] Log opened at 2024-10-18 11:12:10.336621 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:12:11.115744 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:12:11.739454 + +[28] Log opened at 2024-10-18 11:12:33.541426 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:12:34.610717 + +[28] Log opened at 2024-10-18 11:12:34.633435 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:12:35.264000 + +[24] Log opened at 2024-10-18 11:12:35.329934 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:12:35.339115 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:12:36.112016 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:12:36.747039 + +[29] Log opened at 2024-10-18 11:12:49.609350 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:12:50.655218 + +[29] Log opened at 2024-10-18 11:12:50.677415 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:12:51.308345 + +[80] Log opened at 2024-10-18 11:12:51.378311 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:12:51.380406 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:12:52.153552 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:12:52.758620 + +[23] Log opened at 2024-10-18 11:12:58.381517 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:12:59.447166 + +[23] Log opened at 2024-10-18 11:12:59.465613 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:13:00.096014 + +[27] Log opened at 2024-10-18 11:13:00.162806 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] Log opened at 2024-10-18 11:13:00.172454 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:13:00.942395 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:13:01.543938 + +[82] Log opened at 2024-10-18 11:14:30.914356 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:14:32.049980 + +[25] Log opened at 2024-10-18 11:14:32.088756 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:14:32.966919 + +[26] Log opened at 2024-10-18 11:14:41.667925 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:14:42.822589 + +[28] Log opened at 2024-10-18 11:15:52.237177 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:15:53.366639 + +[24] Log opened at 2024-10-18 11:16:03.921756 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:16:05.064810 + +[29] Log opened at 2024-10-18 11:16:17.178161 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:16:18.328687 + +[80] Log opened at 2024-10-18 11:16:52.975945 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:16:54.127528 + +[23] Log opened at 2024-10-18 11:16:55.320310 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:16:56.451017 + +[81] Log opened at 2024-10-18 11:17:38.406753 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:17:39.431759 + +[81] Log opened at 2024-10-18 11:17:39.452043 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:17:40.081567 + +[27] Log opened at 2024-10-18 11:17:40.173863 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 11:17:40.174650 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:17:40.945847 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:17:41.573468 + +[26] Log opened at 2024-10-18 11:18:12.050366 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:18:13.084849 + +[26] Log opened at 2024-10-18 11:18:13.106365 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:18:13.739147 + +[28] Log opened at 2024-10-18 11:18:13.806259 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 11:18:13.811432 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:18:14.581681 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:18:15.179178 + +[28] Log opened at 2024-10-18 11:18:20.011898 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:18:21.056167 + +[28] Log opened at 2024-10-18 11:18:21.076248 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:18:21.710461 + +[28] Log opened at 2024-10-18 11:18:21.784070 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 11:18:21.785615 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:18:22.553721 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:18:23.191392 + +[29] Log opened at 2024-10-18 11:19:02.110040 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:19:03.132704 + +[80] Log opened at 2024-10-18 11:19:03.155507 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:19:03.788589 + +[80] Log opened at 2024-10-18 11:19:03.861682 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:19:03.865765 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:19:04.638885 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:19:05.284520 + +[23] Log opened at 2024-10-18 11:19:11.337274 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:19:12.373705 + +[23] Log opened at 2024-10-18 11:19:12.395305 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:19:13.025080 + +[81] Log opened at 2024-10-18 11:19:13.092980 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] Log opened at 2024-10-18 11:19:13.096912 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:19:13.862989 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:19:14.493937 + +[82] Log opened at 2024-10-18 11:19:47.320429 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:19:48.342646 + +[82] Log opened at 2024-10-18 11:19:48.370576 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:19:49.002068 + +[27] Log opened at 2024-10-18 11:19:49.073449 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 11:19:49.075517 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:19:49.843406 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:19:50.456253 + +[25] Log opened at 2024-10-18 11:29:33.873382 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:29:34.926102 + +[26] Log opened at 2024-10-18 11:29:34.959745 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:29:35.590193 + +[24] Log opened at 2024-10-18 11:29:35.665803 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 11:29:35.668294 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:29:36.445502 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:29:37.071436 + +[26] Log opened at 2024-10-18 11:29:40.040342 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:29:41.062166 + +[26] Log opened at 2024-10-18 11:29:41.084674 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:29:41.717958 + +[26] Log opened at 2024-10-18 11:29:41.795595 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 11:29:41.797451 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:29:42.569261 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:29:43.193295 + +[24] Log opened at 2024-10-18 11:29:44.382613 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:29:45.431637 + +[24] Log opened at 2024-10-18 11:29:45.457414 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:29:46.087112 + +[24] Log opened at 2024-10-18 11:29:46.157440 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 11:29:46.162411 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:29:46.215957 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:29:46.937305 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:29:47.538921 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:29:47.939655 + +[23] Log opened at 2024-10-18 11:30:35.997311 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:30:37.041154 + +[81] Log opened at 2024-10-18 11:30:37.067296 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:30:37.699992 + +[81] Log opened at 2024-10-18 11:30:37.780156 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] Log opened at 2024-10-18 11:30:37.782864 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-18 11:30:38.553234 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:30:39.179973 + +[27] Log opened at 2024-10-18 11:31:08.078866 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:31:09.119115 + +[27] Log opened at 2024-10-18 11:31:09.142927 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:31:09.776625 + +[25] Log opened at 2024-10-18 11:31:09.857211 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] Log opened at 2024-10-18 11:31:09.859765 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-18 11:31:10.628345 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:31:11.256757 + +[26] Log opened at 2024-10-18 11:32:18.885708 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:32:19.919397 + +[26] Log opened at 2024-10-18 11:32:19.941821 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:32:20.571168 + +[24] Log opened at 2024-10-18 11:32:20.645819 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] Log opened at 2024-10-18 11:32:20.648070 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:32:21.417514 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:32:22.038463 + +[29] Log opened at 2024-10-18 11:32:29.920768 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:32:30.960473 + +[80] Log opened at 2024-10-18 11:32:30.978442 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:32:31.608904 + +[80] Log opened at 2024-10-18 11:32:31.680919 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:32:31.685600 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:32:32.453791 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:32:33.084577 + +[25] Log opened at 2024-10-18 11:33:11.415822 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:33:12.457193 + +[25] Log opened at 2024-10-18 11:33:12.481245 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:33:13.109432 + +[81] Log opened at 2024-10-18 11:33:13.183795 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:33:13.185814 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:33:13.958007 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:33:14.572101 + +[28] Log opened at 2024-10-18 11:33:16.037517 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:33:17.063344 + +[28] Log opened at 2024-10-18 11:33:17.088290 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:33:17.719858 + +[28] Log opened at 2024-10-18 11:33:17.793185 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 11:33:17.797418 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] Log opened at 2024-10-18 11:33:17.846401 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:33:18.564651 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:33:19.184561 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:33:19.593142 + +[24] Log opened at 2024-10-18 11:33:24.614203 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:33:25.664863 + +[24] Log opened at 2024-10-18 11:33:25.688180 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:33:26.318970 + +[26] Log opened at 2024-10-18 11:33:26.392553 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 11:33:26.395314 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:33:27.056052 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:33:27.160932 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:33:27.763157 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:33:28.164309 + +[29] Log opened at 2024-10-18 11:33:28.267782 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] Log opened at 2024-10-18 11:33:28.269563 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 11:33:28.305226 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:33:29.045936 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:33:29.660456 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:33:30.064398 + +[86] Log opened at 2024-10-18 11:35:33.740586 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:35:34.781749 + +[86] Log opened at 2024-10-18 11:35:34.805444 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:35:35.436701 + +[82] Log opened at 2024-10-18 11:35:35.510053 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 11:35:35.512382 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:35:36.292307 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:35:36.897255 + +[28] Log opened at 2024-10-18 11:35:54.059717 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:35:55.075302 + +[28] Log opened at 2024-10-18 11:35:55.093636 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:35:55.725540 + +[25] Log opened at 2024-10-18 11:35:55.793753 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:35:55.798485 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:35:56.563784 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-18 11:35:57.181787 + +[26] Log opened at 2024-10-18 11:36:47.948744 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:36:48.974665 + +[26] Log opened at 2024-10-18 11:36:48.995002 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-18 11:36:49.628037 + +[80] Log opened at 2024-10-18 11:36:49.701993 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:36:49.708403 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:36:50.478662 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:36:51.080285 + +[87] Log opened at 2024-10-18 11:36:52.577054 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:36:53.594671 + +[87] Log opened at 2024-10-18 11:36:53.613817 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:36:54.246074 + +[82] Log opened at 2024-10-18 11:36:54.316148 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 11:36:54.325395 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 11:36:54.416415 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:36:55.092098 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:36:55.711951 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:36:56.125623 + +[29] Log opened at 2024-10-18 11:37:28.164463 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:37:29.189075 + +[29] Log opened at 2024-10-18 11:37:29.212281 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:37:29.848326 + +[80] Log opened at 2024-10-18 11:37:29.925777 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:37:29.927771 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 11:37:29.972874 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:37:30.695161 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:37:31.298188 + +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:37:31.698159 + +[87] Log opened at 2024-10-18 11:37:32.654042 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:37:33.687647 + +[87] Log opened at 2024-10-18 11:37:33.708137 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:37:34.342151 + +[86] Log opened at 2024-10-18 11:37:34.409457 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 11:37:34.416873 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 11:37:34.491220 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:37:35.184305 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:37:35.802545 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:37:36.206890 + +[94] Log opened at 2024-10-18 11:37:53.243037 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:37:54.260354 + +[94] Log opened at 2024-10-18 11:37:54.283964 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:37:54.918323 + +[80] Log opened at 2024-10-18 11:37:54.993722 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 11:37:54.995987 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:37:55.056976 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:37:55.764687 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:37:56.382575 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:37:56.782336 + +[95] Log opened at 2024-10-18 11:37:58.245602 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 11:37:59.269549 + +[95] Log opened at 2024-10-18 11:37:59.301368 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 11:37:59.936306 + +[81] Log opened at 2024-10-18 11:38:00.008215 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 11:38:00.016311 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:38:00.109793 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:38:00.790545 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:38:01.404520 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:38:01.807491 + +[81] Log opened at 2024-10-18 11:38:04.132923 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:38:05.165987 + +[81] Log opened at 2024-10-18 11:38:05.189559 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:38:05.821481 + +[81] Log opened at 2024-10-18 11:38:05.891079 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:38:05.894263 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 11:38:05.975567 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:38:06.661103 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:38:07.258400 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:38:07.661760 + +[80] Log opened at 2024-10-18 11:38:12.714213 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:38:13.756003 + +[80] Log opened at 2024-10-18 11:38:13.781062 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:38:14.414519 + +[94] Log opened at 2024-10-18 11:38:14.489053 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:38:14.491805 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] Log opened at 2024-10-18 11:38:14.579161 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:38:15.259889 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:38:15.860960 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:38:16.272279 + +[95] Log opened at 2024-10-18 11:38:22.724621 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 11:38:23.766880 + +[24] Log opened at 2024-10-18 11:38:23.792006 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:38:24.426425 + +[24] Log opened at 2024-10-18 11:38:24.502806 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 11:38:24.507606 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 11:38:25.278931 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 11:38:25.922099 + +[86] Log opened at 2024-10-18 11:58:35.648643 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:58:36.686081 + +[86] Log opened at 2024-10-18 11:58:36.717799 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 11:58:37.351946 + +[87] Log opened at 2024-10-18 11:58:37.426767 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 11:58:37.429150 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 11:58:38.197212 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 11:58:38.823685 + +[81] Log opened at 2024-10-18 11:58:50.196051 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:58:51.236181 + +[81] Log opened at 2024-10-18 11:58:51.255829 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:58:51.887219 + +[82] Log opened at 2024-10-18 11:58:51.961964 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 11:58:51.965347 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 11:58:52.735022 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:58:53.364587 + +[82] Log opened at 2024-10-18 11:58:58.106916 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:58:59.133087 + +[82] Log opened at 2024-10-18 11:58:59.150795 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:58:59.780106 + +[82] Log opened at 2024-10-18 11:58:59.853985 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 11:58:59.855718 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 11:59:00.626692 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 11:59:01.262365 + +[94] Log opened at 2024-10-18 11:59:10.713277 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:59:11.748031 + +[94] Log opened at 2024-10-18 11:59:11.768012 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:59:12.398587 + +[80] Log opened at 2024-10-18 11:59:12.467934 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 11:59:12.472482 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 11:59:13.244658 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 11:59:13.874396 + +[95] Log opened at 2024-10-18 12:00:47.884553 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:00:48.906558 + +[95] Log opened at 2024-10-18 12:00:48.937382 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:00:49.569916 + +[24] Log opened at 2024-10-18 12:00:49.648899 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 12:00:49.651751 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:00:50.429169 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:00:51.039116 + +[81] Log opened at 2024-10-18 12:01:01.508141 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:01:02.528986 + +[81] Log opened at 2024-10-18 12:01:02.548211 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:01:03.182702 + +[29] Log opened at 2024-10-18 12:01:03.259066 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 12:01:03.262730 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:01:04.028250 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:01:04.705365 + +[82] Log opened at 2024-10-18 12:05:47.210107 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:05:48.224096 + +[82] Log opened at 2024-10-18 12:05:48.256096 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:05:48.888530 + +[86] Log opened at 2024-10-18 12:05:48.962330 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 12:05:48.964543 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:05:49.737883 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:05:50.365438 + +[28] Log opened at 2024-10-18 12:06:41.049653 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:06:42.095041 + +[95] Log opened at 2024-10-18 12:06:42.121779 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:06:42.755630 + +[95] Log opened at 2024-10-18 12:06:42.831662 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 12:06:42.834156 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:06:43.607080 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:06:44.217457 + +[24] Log opened at 2024-10-18 12:07:05.750494 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:07:06.791313 + +[24] Log opened at 2024-10-18 12:07:06.812782 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:07:07.444301 + +[81] Log opened at 2024-10-18 12:07:07.519931 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 12:07:07.521775 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:07:08.294748 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:07:08.889986 + +[94] Log opened at 2024-10-18 12:07:33.180084 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:07:34.208889 + +[94] Log opened at 2024-10-18 12:07:34.233186 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:07:34.869150 + +[80] Log opened at 2024-10-18 12:07:34.944813 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 12:07:34.947157 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:07:35.717015 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:07:36.337572 + +[87] Log opened at 2024-10-18 12:08:00.342752 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:08:01.363128 + +[87] Log opened at 2024-10-18 12:08:01.385666 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:08:02.020305 + +[82] Log opened at 2024-10-18 12:08:02.094263 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:08:02.098055 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:08:02.861105 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:08:03.502143 + +[28] Log opened at 2024-10-18 12:08:13.801718 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:08:14.831116 + +[28] Log opened at 2024-10-18 12:08:14.851923 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:08:15.487370 + +[95] Log opened at 2024-10-18 12:08:15.562743 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 12:08:15.564432 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:08:16.333089 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:08:16.958545 + +[29] Log opened at 2024-10-18 12:08:35.225579 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:08:36.256085 + +[29] Log opened at 2024-10-18 12:08:36.280166 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:08:36.911786 + +[81] Log opened at 2024-10-18 12:08:36.992274 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 12:08:36.994579 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:08:37.767562 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:08:38.382224 + +[94] Log opened at 2024-10-18 12:09:31.781855 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:09:32.810485 + +[94] Log opened at 2024-10-18 12:09:32.835041 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:09:33.467800 + +[80] Log opened at 2024-10-18 12:09:33.547177 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:09:33.548645 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:09:34.318342 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:09:34.937861 + +[86] Log opened at 2024-10-18 12:09:52.498635 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:09:53.520823 + +[86] Log opened at 2024-10-18 12:09:53.541583 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:09:54.177265 + +[82] Log opened at 2024-10-18 12:09:54.252950 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:09:54.253604 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:09:55.020911 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:09:55.630765 + +[28] Log opened at 2024-10-18 12:10:13.259780 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:10:14.294178 + +[28] Log opened at 2024-10-18 12:10:14.314141 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:10:14.947857 + +[24] Log opened at 2024-10-18 12:10:15.020794 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 12:10:15.025369 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:10:15.790026 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:10:16.416313 + +[95] Log opened at 2024-10-18 12:11:07.230388 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:11:08.275753 + +[95] Log opened at 2024-10-18 12:11:08.306493 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:11:08.937330 + +[94] Log opened at 2024-10-18 12:11:09.014206 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 12:11:09.016331 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:11:09.786006 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:11:10.431166 + +[87] Log opened at 2024-10-18 12:11:47.149898 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:11:48.174883 + +[87] Log opened at 2024-10-18 12:11:48.200428 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:11:48.831811 + +[80] Log opened at 2024-10-18 12:11:48.910132 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:11:48.912274 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:11:49.685506 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:11:50.291698 + +[86] Log opened at 2024-10-18 12:11:58.547363 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:11:59.582641 + +[86] Log opened at 2024-10-18 12:11:59.605159 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:12:00.237262 + +[82] Log opened at 2024-10-18 12:12:00.309980 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:12:00.312715 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:12:01.078573 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:12:01.678192 + +[28] Log opened at 2024-10-18 12:12:21.528058 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:12:22.544722 + +[28] Log opened at 2024-10-18 12:12:22.567159 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:12:23.202586 + +[24] Log opened at 2024-10-18 12:12:23.276002 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 12:12:23.278428 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:12:24.045159 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:12:24.661947 + +[29] Log opened at 2024-10-18 12:15:05.861006 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:15:06.906895 + +[29] Log opened at 2024-10-18 12:15:06.930113 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:15:07.562633 + +[81] Log opened at 2024-10-18 12:15:07.641055 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 12:15:07.644648 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:15:08.412330 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:15:09.014587 + +[87] Log opened at 2024-10-18 12:15:20.866295 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:15:21.883040 + +[87] Log opened at 2024-10-18 12:15:21.901868 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:15:22.531290 + +[80] Log opened at 2024-10-18 12:15:22.601147 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:15:22.604440 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:15:23.374422 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:15:24.021677 + +[82] Log opened at 2024-10-18 12:16:25.652407 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:16:26.698556 + +[82] Log opened at 2024-10-18 12:16:26.720037 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:16:27.352231 + +[28] Log opened at 2024-10-18 12:16:27.425552 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 12:16:27.430941 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:16:28.198781 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:16:28.838661 + +[95] Log opened at 2024-10-18 12:17:10.681806 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:17:11.693821 + +[81] Log opened at 2024-10-18 12:17:11.721213 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:17:12.350260 + +[81] Log opened at 2024-10-18 12:17:12.471260 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 12:17:12.482496 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:17:13.245069 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:17:13.885694 + +[86] Log opened at 2024-10-18 12:17:38.514561 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:17:39.561622 + +[86] Log opened at 2024-10-18 12:17:39.581178 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:17:40.213951 + +[94] Log opened at 2024-10-18 12:17:40.288480 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:17:40.291310 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:17:41.058752 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:17:41.677851 + +[82] Log opened at 2024-10-18 12:19:13.988204 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:19:15.005099 + +[82] Log opened at 2024-10-18 12:19:15.032982 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:19:15.665975 + +[28] Log opened at 2024-10-18 12:19:15.740140 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 12:19:15.743509 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:19:16.515852 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:19:17.132999 + +[87] Log opened at 2024-10-18 12:19:32.580915 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:19:33.619778 + +[87] Log opened at 2024-10-18 12:19:33.640232 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:19:34.270802 + +[80] Log opened at 2024-10-18 12:19:34.343800 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:19:34.347148 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:19:35.118713 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:19:35.743343 + +[95] Log opened at 2024-10-18 12:20:08.680535 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:20:09.712106 + +[95] Log opened at 2024-10-18 12:20:09.738910 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:20:10.371963 + +[81] Log opened at 2024-10-18 12:20:10.449477 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:20:10.451367 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:20:11.218102 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:20:11.858446 + +[94] Log opened at 2024-10-18 12:21:19.699896 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:21:20.706174 + +[94] Log opened at 2024-10-18 12:21:20.729485 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:21:21.358361 + +[29] Log opened at 2024-10-18 12:21:21.430834 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 12:21:21.434530 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:21:22.208188 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:21:22.821629 + +[24] Log opened at 2024-10-18 12:21:38.182642 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:21:39.211149 + +[24] Log opened at 2024-10-18 12:21:39.233818 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:21:39.869119 + +[82] Log opened at 2024-10-18 12:21:39.946273 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 12:21:39.947935 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:21:40.717399 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:21:41.326211 + +[24] Log opened at 2024-10-18 12:21:44.184135 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:21:45.223457 + +[82] Log opened at 2024-10-18 12:21:45.246572 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:21:45.876364 + +[82] Log opened at 2024-10-18 12:21:45.949761 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 12:21:45.952228 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:21:46.719344 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:21:47.339785 + +[28] Log opened at 2024-10-18 12:22:34.209152 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:22:35.222158 + +[28] Log opened at 2024-10-18 12:22:35.251774 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:22:35.882534 + +[95] Log opened at 2024-10-18 12:22:35.957987 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 12:22:35.960029 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:22:36.728242 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:22:37.346354 + +[86] Log opened at 2024-10-18 12:22:49.424379 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:22:50.446285 + +[86] Log opened at 2024-10-18 12:22:50.469297 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:22:51.100480 + +[81] Log opened at 2024-10-18 12:22:51.173613 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:22:51.174691 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:22:51.952705 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:22:52.573766 + +[86] Log opened at 2024-10-18 12:22:55.465654 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:22:56.504210 + +[81] Log opened at 2024-10-18 12:22:56.524717 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:22:57.154542 + +[81] Log opened at 2024-10-18 12:22:57.225438 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 12:22:57.227079 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:22:58.001389 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:22:58.614366 + +[94] Log opened at 2024-10-18 12:23:05.038502 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:23:06.064638 + +[94] Log opened at 2024-10-18 12:23:06.084332 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:23:06.714675 + +[29] Log opened at 2024-10-18 12:23:06.786448 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 12:23:06.790016 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:23:07.559554 + +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:23:08.191268 + +[24] Log opened at 2024-10-18 12:23:16.996704 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:23:18.024130 + +[24] Log opened at 2024-10-18 12:23:18.043969 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:23:18.677390 + +[82] Log opened at 2024-10-18 12:23:18.746545 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 12:23:18.749819 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:23:19.521191 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:23:20.137202 + +[87] Log opened at 2024-10-18 12:26:26.508848 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:26:27.522366 + +[87] Log opened at 2024-10-18 12:26:27.552083 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:26:28.184789 + +[80] Log opened at 2024-10-18 12:26:28.260588 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:26:28.262969 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:26:29.030074 + +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:26:29.645601 + +[81] Log opened at 2024-10-18 12:27:31.020113 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:27:32.064356 + +[81] Log opened at 2024-10-18 12:27:32.086527 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:27:32.718937 + +[94] Log opened at 2024-10-18 12:27:32.802531 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 12:27:32.807118 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 12:27:33.580008 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:27:34.179198 + +[82] Log opened at 2024-10-18 12:27:47.289813 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:27:48.304561 + +[82] Log opened at 2024-10-18 12:27:48.322262 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:27:48.956203 + +[28] Log opened at 2024-10-18 12:27:49.027639 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 12:27:49.033056 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:27:49.802535 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:27:50.416840 + +[86] Log opened at 2024-10-18 12:28:59.433291 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:29:00.442313 + +[86] Log opened at 2024-10-18 12:29:00.465363 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:29:01.096765 + +[95] Log opened at 2024-10-18 12:29:01.169535 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:29:01.171756 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:29:01.942304 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:29:02.586016 + +[24] Log opened at 2024-10-18 12:29:14.575808 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:29:15.594367 + +[24] Log opened at 2024-10-18 12:29:15.613004 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:29:16.247608 + +[81] Log opened at 2024-10-18 12:29:16.324035 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 12:29:16.326455 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:29:17.093253 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:29:17.688771 + +[94] Log opened at 2024-10-18 12:29:28.443978 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:29:29.455822 + +[94] Log opened at 2024-10-18 12:29:29.473052 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:29:30.106417 + +[82] Log opened at 2024-10-18 12:29:30.180949 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 12:29:30.183772 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:29:30.958457 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:29:31.578801 + +[94] Log opened at 2024-10-18 12:29:35.861385 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:29:36.903522 + +[94] Log opened at 2024-10-18 12:29:36.924236 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:29:37.556688 + +[28] Log opened at 2024-10-18 12:29:37.624442 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 12:29:37.626270 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:29:38.405447 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 12:29:39.017457 + +[80] Log opened at 2024-10-18 12:29:54.837373 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:29:55.875119 + +[80] Log opened at 2024-10-18 12:29:55.897230 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:29:56.531324 + +[86] Log opened at 2024-10-18 12:29:56.605355 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] Log opened at 2024-10-18 12:29:56.608638 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[80] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-10-18 12:29:57.375835 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:29:58.003606 + +[86] Log opened at 2024-10-18 12:30:02.680985 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:30:03.726548 + +[86] Log opened at 2024-10-18 12:30:03.750137 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:30:04.385040 + +[86] Log opened at 2024-10-18 12:30:04.455006 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 12:30:04.456494 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:30:05.223824 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 12:30:05.861965 + +[95] Log opened at 2024-10-18 12:47:00.852896 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:47:01.874178 + +[95] Log opened at 2024-10-18 12:47:01.908421 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:47:02.538935 + +[24] Log opened at 2024-10-18 12:47:02.614814 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 12:47:02.616937 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 12:47:03.386693 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 12:47:04.005228 + +[81] Log opened at 2024-10-18 12:47:25.077111 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:47:26.104427 + +[81] Log opened at 2024-10-18 12:47:26.127763 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:47:26.760044 + +[82] Log opened at 2024-10-18 12:47:26.834024 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 12:47:26.836487 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 12:47:27.602381 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 12:47:28.246327 + +[94] Log opened at 2024-10-18 12:59:30.350575 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:59:31.366152 + +[94] Log opened at 2024-10-18 12:59:31.399970 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:59:32.031034 + +[87] Log opened at 2024-10-18 12:59:32.101731 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 12:59:32.106999 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 12:59:32.877463 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 12:59:33.488061 + +[29] Log opened at 2024-10-18 13:00:31.738210 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 13:00:32.777894 + +[29] Log opened at 2024-10-18 13:00:32.807055 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 13:00:33.436246 + +[81] Log opened at 2024-10-18 13:00:33.506767 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:00:33.516669 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:00:33.582353 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:00:34.293723 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:00:34.454294 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:00:34.926795 + +[94] Log opened at 2024-10-18 13:01:14.496453 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:01:15.511393 + +[94] Log opened at 2024-10-18 13:01:15.542003 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:01:16.171609 + +[94] Log opened at 2024-10-18 13:01:16.242334 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 13:01:16.248524 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] Log opened at 2024-10-18 13:01:16.314795 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:01:17.017493 + +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:01:17.190211 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:01:17.629359 + +[29] Log opened at 2024-10-18 13:01:40.311159 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 13:01:41.337790 + +[29] Log opened at 2024-10-18 13:01:41.359879 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 13:01:41.988992 + +[28] Log opened at 2024-10-18 13:01:42.057703 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:01:42.065738 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] Log opened at 2024-10-18 13:01:42.100096 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:01:42.833931 + +[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-18 13:01:42.975063 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:01:43.445675 + +[95] Log opened at 2024-10-18 13:01:50.119120 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:01:50.996112 + +[81] Log opened at 2024-10-18 13:02:13.345317 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:02:14.371885 + +[81] Log opened at 2024-10-18 13:02:14.398969 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:02:15.026991 + +[97] Log opened at 2024-10-18 13:02:15.096301 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 13:02:15.106539 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:02:15.128682 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:02:15.875245 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:02:16.499767 + +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:02:16.965472 + +[28] Log opened at 2024-10-18 13:02:37.989701 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:02:39.021925 + +[28] Log opened at 2024-10-18 13:02:39.047857 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:02:39.676523 + +[95] Log opened at 2024-10-18 13:02:39.743400 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:02:39.750219 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:02:39.780452 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:02:40.516934 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:02:41.133818 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:02:41.521088 + +[98] Log opened at 2024-10-18 13:15:24.066338 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-10-18 13:15:25.093922 + +[98] Log opened at 2024-10-18 13:15:25.128185 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-10-18 13:15:25.756565 + +[81] Log opened at 2024-10-18 13:15:25.828847 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] Log opened at 2024-10-18 13:15:25.832396 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:15:25.860679 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[98] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-10-18 13:15:26.601913 + +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:15:27.221635 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:15:27.587576 + +[86] Log opened at 2024-10-18 13:16:04.962086 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:16:05.985229 + +[86] Log opened at 2024-10-18 13:16:06.010436 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:16:06.639614 + +[87] Log opened at 2024-10-18 13:16:06.726879 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:16:06.728964 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:16:06.741523 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:16:07.499841 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:16:08.120038 + +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:16:08.500371 + +[81] Log opened at 2024-10-18 13:16:47.766982 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:16:48.808422 + +[81] Log opened at 2024-10-18 13:16:48.835565 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:16:49.464638 + +[24] Log opened at 2024-10-18 13:16:49.537649 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] Log opened at 2024-10-18 13:16:49.541113 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:16:49.587942 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[81] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-10-18 13:16:50.309775 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:16:50.960633 + +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:16:51.341189 + +[86] Log opened at 2024-10-18 13:17:13.990479 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:17:15.002769 + +[86] Log opened at 2024-10-18 13:17:15.030279 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:17:15.662952 + +[95] Log opened at 2024-10-18 13:17:15.731868 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:17:15.743678 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] Log opened at 2024-10-18 13:17:15.763078 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:17:16.517375 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:17:17.154059 + +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:17:17.526067 + +[24] Log opened at 2024-10-18 13:19:00.391040 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:01.401553 + +[24] Log opened at 2024-10-18 13:19:01.434699 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:02.063624 + +[94] Log opened at 2024-10-18 13:19:02.135499 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:19:02.141418 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] Log opened at 2024-10-18 13:19:02.156199 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:02.912866 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:19:03.557736 + +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:19:04.040251 + +[24] Log opened at 2024-10-18 13:19:04.122412 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:05.147284 + +[94] Log opened at 2024-10-18 13:19:05.167446 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:19:05.797588 + +[94] Log opened at 2024-10-18 13:19:05.864125 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:19:05.869907 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] Log opened at 2024-10-18 13:19:05.901794 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:06.638175 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:19:07.283760 + +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:19:07.777588 + +[24] Log opened at 2024-10-18 13:19:08.125771 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:09.134567 + +[94] Log opened at 2024-10-18 13:19:09.154195 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:19:09.784808 + +[94] Log opened at 2024-10-18 13:19:09.859018 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:19:09.863522 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:19:09.902417 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:10.633481 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:19:11.204842 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:19:11.238142 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:19:11.733998 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:12.240325 + +[86] Log opened at 2024-10-18 13:19:12.260799 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:19:12.891273 + +[86] Log opened at 2024-10-18 13:19:12.957386 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:19:12.964938 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:19:12.991585 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:19:13.739645 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:19:14.361786 + +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:19:14.849841 + +[82] Log opened at 2024-10-18 13:19:46.388911 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:19:47.429360 + +[82] Log opened at 2024-10-18 13:19:47.458661 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:19:48.088981 + +[99] Log opened at 2024-10-18 13:19:48.156385 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:19:48.160511 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] Log opened at 2024-10-18 13:19:48.193268 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:19:48.935880 + +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:19:49.559943 + +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:19:49.945727 + +[28] Log opened at 2024-10-18 13:20:39.644496 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:20:40.646158 + +[28] Log opened at 2024-10-18 13:20:40.669540 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:20:41.298930 + +[87] Log opened at 2024-10-18 13:20:41.372809 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:20:41.374503 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:20:41.402625 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:20:42.140964 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:20:42.739297 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:20:43.098240 + +[86] Log opened at 2024-10-18 13:21:39.741609 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:21:40.804527 + +[86] Log opened at 2024-10-18 13:21:40.836169 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:21:41.466425 + +[97] Log opened at 2024-10-18 13:21:41.533265 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 13:21:41.542242 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:21:41.577080 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:21:42.311340 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:21:42.942057 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:21:43.308632 + +[99] Log opened at 2024-10-18 13:22:17.977603 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:22:19.010209 + +[99] Log opened at 2024-10-18 13:22:19.031866 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:22:19.662035 + +[100] Log opened at 2024-10-18 13:22:19.726778 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:22:19.736987 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] Log opened at 2024-10-18 13:22:19.768404 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:22:20.507019 + +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:22:21.121659 + +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:22:21.513978 + +[28] Log opened at 2024-10-18 13:22:58.128815 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:22:59.163728 + +[28] Log opened at 2024-10-18 13:22:59.190703 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:22:59.819586 + +[87] Log opened at 2024-10-18 13:22:59.893439 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:22:59.895732 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:22:59.924843 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:23:00.661416 + +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:23:01.283701 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:23:01.668363 + +[95] Log opened at 2024-10-18 13:23:34.258354 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:23:35.294242 + +[95] Log opened at 2024-10-18 13:23:35.323025 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:23:35.953403 + +[86] Log opened at 2024-10-18 13:23:36.022680 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:23:36.033919 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] Log opened at 2024-10-18 13:23:36.062667 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:23:36.802562 + +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:23:37.457207 + +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:23:37.834683 + +[82] Log opened at 2024-10-18 13:23:50.333298 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:23:51.367106 + +[82] Log opened at 2024-10-18 13:23:51.391840 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:23:52.022985 + +[94] Log opened at 2024-10-18 13:23:52.103462 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:23:52.103788 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] Log opened at 2024-10-18 13:23:52.133121 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:23:52.876220 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:23:53.524635 + +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:23:53.898230 + +[99] Log opened at 2024-10-18 13:24:13.003131 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:24:14.043605 + +[99] Log opened at 2024-10-18 13:24:14.067973 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:24:14.698164 + +[24] Log opened at 2024-10-18 13:24:14.764082 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:24:14.771583 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] Log opened at 2024-10-18 13:24:14.803392 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:24:15.545573 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:24:16.186645 + +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:24:16.584614 + +[28] Log opened at 2024-10-18 13:30:24.240435 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:30:25.283627 + +[28] Log opened at 2024-10-18 13:30:25.315454 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:30:25.945035 + +[95] Log opened at 2024-10-18 13:30:26.011148 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:30:26.018440 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] Log opened at 2024-10-18 13:30:26.046075 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:30:26.787375 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:30:27.413465 + +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[86] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-10-18 13:30:27.804722 + +[97] Log opened at 2024-10-18 13:30:55.495156 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:30:56.514488 + +[97] Log opened at 2024-10-18 13:30:56.531470 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:30:57.161478 + +[82] Log opened at 2024-10-18 13:30:57.229231 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] Log opened at 2024-10-18 13:30:57.238648 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:30:57.266438 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:30:58.009192 + +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:30:58.629888 + +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:30:58.992394 + +[100] Log opened at 2024-10-18 13:31:02.648616 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:31:03.673624 + +[100] Log opened at 2024-10-18 13:31:03.695101 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:31:04.324842 + +[24] Log opened at 2024-10-18 13:31:04.398988 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:31:04.410102 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:31:04.429890 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:31:05.184890 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:31:05.815632 + +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:31:06.193202 + +[94] Log opened at 2024-10-18 13:31:17.688005 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:31:18.711378 + +[94] Log opened at 2024-10-18 13:31:18.737918 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:31:19.367460 + +[97] Log opened at 2024-10-18 13:31:19.439814 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:31:19.442499 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:31:19.478095 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:31:20.216910 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:31:20.843333 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:31:21.225874 + +[101] Log opened at 2024-10-18 13:34:46.606237 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:34:47.625335 + +[101] Log opened at 2024-10-18 13:34:47.651627 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:34:48.280545 + +[100] Log opened at 2024-10-18 13:34:48.346495 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] Log opened at 2024-10-18 13:34:48.356656 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] Log opened at 2024-10-18 13:34:48.394037 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:34:49.133993 + +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[100] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-10-18 13:34:49.756670 + +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:34:50.147688 + +[28] Log opened at 2024-10-18 13:34:56.386261 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:34:57.261155 + +[24] Log opened at 2024-10-18 13:35:19.304500 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:35:20.338269 + +[24] Log opened at 2024-10-18 13:35:20.361394 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:35:20.991855 + +[97] Log opened at 2024-10-18 13:35:21.062546 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:35:21.074966 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:35:21.102213 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:35:21.843243 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:35:22.480496 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:35:22.859315 + +[101] Log opened at 2024-10-18 13:35:31.555119 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:35:32.567880 + +[28] Log opened at 2024-10-18 13:35:32.585728 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:35:33.214865 + +[28] Log opened at 2024-10-18 13:35:33.281325 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] Log opened at 2024-10-18 13:35:33.289443 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:35:33.320667 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:35:34.064059 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:35:34.703455 + +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:35:35.075319 + +[101] Log opened at 2024-10-18 13:35:37.215728 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:35:38.195634 + +[102] Log opened at 2024-10-18 13:36:09.057208 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:36:10.077528 + +[102] Log opened at 2024-10-18 13:36:10.107140 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:36:10.735988 + +[24] Log opened at 2024-10-18 13:36:10.803191 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] Log opened at 2024-10-18 13:36:10.811526 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] Log opened at 2024-10-18 13:36:10.843356 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:36:11.581509 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:36:12.201411 + +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:36:12.575345 + +[94] Log opened at 2024-10-18 13:36:19.721573 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:36:20.814847 + +[87] Log opened at 2024-10-18 13:36:59.000852 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:37:00.020227 + +[87] Log opened at 2024-10-18 13:37:00.047704 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:37:00.676796 + +[97] Log opened at 2024-10-18 13:37:00.754011 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:37:00.756524 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:37:00.790414 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:37:01.532726 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:37:02.157061 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:37:02.541397 + +[87] Log opened at 2024-10-18 13:37:05.051157 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:37:06.177790 + +[101] Log opened at 2024-10-18 13:37:44.748507 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:37:45.769412 + +[101] Log opened at 2024-10-18 13:37:45.796676 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:37:46.427622 + +[28] Log opened at 2024-10-18 13:37:46.494975 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] Log opened at 2024-10-18 13:37:46.504717 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:37:46.535911 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:37:47.276447 + +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:37:47.894996 + +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:37:48.268615 + +[101] Log opened at 2024-10-18 13:37:52.045670 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:37:53.134183 + +[102] Log opened at 2024-10-18 13:39:27.562251 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:39:28.586749 + +[102] Log opened at 2024-10-18 13:39:28.620239 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:39:29.249482 + +[99] Log opened at 2024-10-18 13:39:29.318399 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] Log opened at 2024-10-18 13:39:29.323467 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:39:29.357857 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:39:30.099051 + +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:39:30.721928 + +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:39:31.086103 + +[102] Log opened at 2024-10-18 13:39:32.865837 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:39:33.964002 + +[87] Log opened at 2024-10-18 13:40:01.413240 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:40:02.453317 + +[87] Log opened at 2024-10-18 13:40:02.477448 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:40:03.106655 + +[97] Log opened at 2024-10-18 13:40:03.179079 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:40:03.184070 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:40:03.217780 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:40:03.952481 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:40:04.595056 + +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:40:04.966356 + +[87] Log opened at 2024-10-18 13:40:07.952900 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:40:08.955480 + +[28] Log opened at 2024-10-18 13:50:04.361067 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:50:05.398246 + +[28] Log opened at 2024-10-18 13:50:05.432816 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:50:06.063448 + +[101] Log opened at 2024-10-18 13:50:06.143809 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:50:06.145412 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] Log opened at 2024-10-18 13:50:06.171902 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:50:06.913936 + +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:50:07.558327 + +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:50:07.945621 + +[24] Log opened at 2024-10-18 13:50:22.041880 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:50:23.066866 + +[24] Log opened at 2024-10-18 13:50:23.091429 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:50:23.721108 + +[102] Log opened at 2024-10-18 13:50:23.790851 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:50:23.796999 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] Log opened at 2024-10-18 13:50:23.830252 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:50:24.561824 + +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:50:25.189207 + +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:50:25.574162 + +[94] Log opened at 2024-10-18 13:50:32.781207 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:50:33.820272 + +[94] Log opened at 2024-10-18 13:50:33.844429 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:50:34.474376 + +[97] Log opened at 2024-10-18 13:50:34.546156 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] Log opened at 2024-10-18 13:50:34.550605 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:50:34.584489 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:50:35.315045 + +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:50:35.939454 + +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:50:36.316942 + +[82] Log opened at 2024-10-18 13:50:39.537560 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:50:40.522658 + +[82] Log opened at 2024-10-18 13:50:40.527726 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:50:41.505910 + +[82] Log opened at 2024-10-18 13:50:43.603086 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:50:44.593188 + +[82] Log opened at 2024-10-18 13:50:44.598474 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:50:45.596220 + +[87] Log opened at 2024-10-18 13:52:18.443071 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:52:19.452235 + +[87] Log opened at 2024-10-18 13:52:19.484337 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:52:20.113792 + +[95] Log opened at 2024-10-18 13:52:20.184555 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] Log opened at 2024-10-18 13:52:20.189266 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] Log opened at 2024-10-18 13:52:20.226883 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[87] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-10-18 13:52:20.954275 + +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[95] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-10-18 13:52:21.591661 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:52:21.973760 + +[102] Log opened at 2024-10-18 13:52:28.574214 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:52:29.582766 + +[102] Log opened at 2024-10-18 13:52:29.613125 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:52:30.241726 + +[99] Log opened at 2024-10-18 13:52:30.308921 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] Log opened at 2024-10-18 13:52:30.315891 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] Log opened at 2024-10-18 13:52:30.354853 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:52:31.083022 + +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:52:31.703543 + +[102] Log opened at 2024-10-18 13:52:31.752122 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-10-18 13:52:32.078853 + +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:52:32.757128 + +[99] Log opened at 2024-10-18 13:52:32.767520 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:52:33.749725 + +[82] Log opened at 2024-10-18 13:52:43.047687 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:52:44.058862 + +[82] Log opened at 2024-10-18 13:52:44.085444 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[82] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-10-18 13:52:44.714148 + +[24] Log opened at 2024-10-18 13:52:44.784026 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] Log opened at 2024-10-18 13:52:44.796788 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-18 13:52:44.814101 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[101] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-10-18 13:52:45.563282 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-18 13:52:46.208846 + +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-18 13:52:46.583687 + +[102] Log opened at 2024-10-18 13:58:44.014385 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:58:45.031652 + +[99] Log opened at 2024-10-18 13:58:45.068639 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:58:45.698210 + +[99] Log opened at 2024-10-18 13:58:45.779615 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] Log opened at 2024-10-18 13:58:45.781866 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:58:45.831560 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:58:46.546962 + +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:58:47.150557 + +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:58:47.557487 + +[102] Log opened at 2024-10-18 13:58:49.337909 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:58:50.379192 + +[99] Log opened at 2024-10-18 13:58:50.402544 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:58:51.032898 + +[99] Log opened at 2024-10-18 13:58:51.102846 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] Log opened at 2024-10-18 13:58:51.108244 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] Log opened at 2024-10-18 13:58:51.121253 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[94] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-10-18 13:58:51.879172 + +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[99] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-10-18 13:58:52.489637 + +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[102] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-10-18 13:58:52.860341 + From f9b12cbcdd1e4afcc17ae0c81f5ce39aa63a765a Mon Sep 17 00:00:00 2001 From: amazuecos Date: Sat, 19 Oct 2024 07:29:47 +0000 Subject: [PATCH 3/3] feat:errores presupuesto --- .../Configuracion/ConfigErrores.php | 9 ++++---- .../Models/Presupuestos/ErrorPresupuesto.php | 5 ++-- .../viewErrorPresupuestoForm.php | 23 ++++++++++++------- .../error_presupuesto/errorPresupuestoForm.js | 21 +++++++++++------ 4 files changed, 36 insertions(+), 22 deletions(-) diff --git a/ci4/app/Controllers/Configuracion/ConfigErrores.php b/ci4/app/Controllers/Configuracion/ConfigErrores.php index 6346507d..31160e2f 100644 --- a/ci4/app/Controllers/Configuracion/ConfigErrores.php +++ b/ci4/app/Controllers/Configuracion/ConfigErrores.php @@ -23,8 +23,6 @@ class ConfigErrores extends BaseResourceController public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger) { - - parent::initController($request, $response, $logger); $this->errorPresupuestoModel = model(ErrorPresupuestoModel::class); } @@ -32,11 +30,13 @@ class ConfigErrores extends BaseResourceController public function index() { - return view(static::$viewPath . $this->indexRoute, $this->viewData); } public function viewForm(int $error_presupuesto_id) { + $this->errorPresupuestoModel->update($error_presupuesto_id, [ + "last_user_id" => auth()->user()->id + ]); return view(static::$viewPath . 'viewErrorPresupuestoForm', ["error_presupuesto_id" => $error_presupuesto_id]); } public function store() @@ -60,10 +60,9 @@ class ConfigErrores extends BaseResourceController public function datatable() { - $query = $this->errorPresupuestoModel->getQueryDatatable(); return DataTable::of($query) ->add("action", fn($q) => $q->id) ->toJson(true); } -} \ No newline at end of file +} diff --git a/ci4/app/Models/Presupuestos/ErrorPresupuesto.php b/ci4/app/Models/Presupuestos/ErrorPresupuesto.php index 0c4fa122..318ea171 100644 --- a/ci4/app/Models/Presupuestos/ErrorPresupuesto.php +++ b/ci4/app/Models/Presupuestos/ErrorPresupuesto.php @@ -62,7 +62,7 @@ class ErrorPresupuesto extends Model "presupuesto_id" => $presupuesto_id, "presupuesto_user_id" => $presupuesto_user_id, "error" => $error, - "datos" => json_encode($datos) + "datos_presupuesto" => json_encode($datos) ]); } public function updateComment(int $error_presupuesto_id, string $comment): bool @@ -81,7 +81,8 @@ class ErrorPresupuesto extends Model "CONCAT(t1.first_name,' ',t1.last_name) as presupuestoUser", "CONCAT(t2.first_name,' ',t2.last_name) as lastUser", "presupuesto_errores.created_at", - "presupuesto_errores.datos", + "presupuesto_errores.datos_presupuesto", + "presupuesto_errores.error", "presupuesto_errores.visto", "presupuesto_errores.comment", diff --git a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php index 8f57bb37..9b30380b 100644 --- a/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php +++ b/ci4/app/Views/themes/vuexy/form/configuracion/error_presupuesto/viewErrorPresupuestoForm.php @@ -25,7 +25,7 @@
-
+ + +
+
-
- - -
+ + +
+
+
diff --git a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js index bbf0510c..c3997179 100644 --- a/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js +++ b/httpdocs/assets/js/safekat/pages/configuracion/error_presupuesto/errorPresupuestoForm.js @@ -11,7 +11,11 @@ class ErrorPresupuestoForm { this.inputDatos = this.item.find("#datos-presupuesto") this.inputComments = this.item.find("#comments-presupuesto") this.errorPresupuestoId = this.item.find("#error-presupuesto-id").attr("value") - this.updateBtnIcon = this.item.find("#update-button-icon") + this.updateBtnIcon = this.item.find(".button-update-comment") + this.checkVisto = this.item.find("#error-presupuesto-visto") + this.loader = this.item.find("#update-button-loader") + this.btnIcon = this.item.find("#update-button-icon") + } init() { this.item.on("click",".button-update-comment",this.handlePostErrorPresupuesto.bind(this)) @@ -32,10 +36,15 @@ class ErrorPresupuestoForm { this.inputPresupuestoUserId.val(data.data.presupuestoUser) this.inputDatos.val(data.data.datos) this.inputComments.val(data.data.comment) - this.updateBtnIcon.removeClass() - this.updateBtnIcon.addClass("ti ti-md ti-send") + this.updateBtnIcon.prop("disabled",false) + this.checkVisto.prop("checked",parseInt(data.data.visto) == 1 ? true : false) + this.setLoader(false) } + setLoader(state = true){ + this.loader.prop("hidden",!state) + this.btnIcon.prop("hidden",state) + } handleGetErrorPresupuestoError(){} handlePostErrorPresupuesto() { @@ -43,8 +52,8 @@ class ErrorPresupuestoForm { { "comments" : this.inputComments.val() } - this.updateBtnIcon.removeClass() - this.updateBtnIcon.addClass("spinner-border spinner-border-lg text-secondary") + this.updateBtnIcon.prop("disabled",true) + this.setLoader() const ajax = new Ajax( `/configuracion/errores-presupuesto/edit/${this.errorPresupuestoId}`, data, @@ -55,8 +64,6 @@ class ErrorPresupuestoForm { ajax.post() } handlePostErrorPresupuestoSuccess(){ - this.updateBtnIcon.removeClass() - this.updateBtnIcon.addClass("ti ti-md ti-check") this.handleGetErrorPresupuesto() }