From 19be8591f31be84ca8eac942362e9478ee0087b9 Mon Sep 17 00:00:00 2001 From: Jaime Jimenez Date: Tue, 15 Oct 2024 15:41:38 +0200 Subject: [PATCH] trabajando en el backend para papeles diferentes --- .../Presupuestos/Presupuestocliente.php | 6 + .../Services/PresupuestoClienteService.php | 60 +- .../assets/js/safekat/components/select2.js | 3 + .../pages/presupuestoCliente/direcciones.js | 2 +- .../presupuestoCliente/presupuestoCliente.js | 6 +- xdebug.log | 3176 +++++++++++++++++ 6 files changed, 3227 insertions(+), 26 deletions(-) create mode 100644 xdebug.log diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index c10c843b..449934ab 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -320,6 +320,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $tipo = $reqData['tipo']; $paginasCuadernillo = $reqData['paginasCuadernillo'] ?? null; + $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? null; $isColor = intval($reqData['isColor']) ?? 0; $isHq = intval($reqData['isHq']) ?? 0; @@ -343,6 +344,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'excluirRotativa' => $excluirRotativa == "false" ? false : true, 'paginas' => $paginas, 'paginas_color' => $paginas_color, + 'papelInteriorDiferente' => $papelInteriorDiferente ]; @@ -1107,14 +1109,17 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $isColor = $datos_entrada['isColor']; $isHq = $datos_entrada['isHq']; $paginasCuadernillo = $datos_entrada['paginasCuadernillo'] ?? null; + // Interior + $papelInteriorDiferente = $datos_entrada['interior']['papelInteriorDiferente'] ?? false; $papel_generico = $datos_entrada['interior']['papel_generico']; $gramaje = $datos_entrada['interior']['gramaje']; $excluirRotativa = $datos_entrada['interior']['excluirRotativa']; $paginas = $datos_entrada['interior']['paginas']; $paginas_color = $datos_entrada['interior']['paginas_color']; + // Cubierta $papel_generico_cubierta = $datos_entrada['cubierta']['papel_generico_cubierta']; $gramajeCubierta = $datos_entrada['cubierta']['gramajeCubierta']; @@ -1192,6 +1197,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'cliente_id' => $cliente_id, 'paginas_color' => $paginas_color, 'excluirRotativa' => $excluirRotativa, + 'papelInteriorDiferente' => $papelInteriorDiferente ); $interior = PresupuestoClienteService::obtenerInterior($input_data); diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php index e4d24f0b..0fc911de 100644 --- a/ci4/app/Services/PresupuestoClienteService.php +++ b/ci4/app/Services/PresupuestoClienteService.php @@ -17,33 +17,32 @@ class PresupuestoClienteService extends BaseService $rotativa = []; $plana = []; // no se busca en plana cuando es estándar (no Premium) - if($data['isHq']) + if ($data['isHq']) $plana = PresupuestoClienteService::obtenerPresupuestoClienteInterior($data); if (!$data['excluirRotativa'] && !$data['isHq']) $rotativa = PresupuestoClienteService::obtenerPresupuestoClienteInteriorRotativa($data); $total_plana = -1; $hay_plana = false; - if($data['isColor']){ + $papelInteriorDiferente = $data['papelInteriorDiferente']; + if ($data['isColor']) { if ($data['datosPedido']->paginas == $data['paginas_color']) $total_plana += floatval($plana[1]['total_impresion']); - elseif(count($plana[0]) > 2 && count($plana[1]) > 2) { - $total_plana = 0.0; + elseif (count($plana[0]) > 2 && count($plana[1]) > 2) { + $total_plana = 0.0; foreach ($plana as $linea) { if (count($linea) > 0) $total_plana += floatval($linea['total_impresion']); } } - } - else{ + } else { foreach ($plana as $linea) { if (count($linea) > 0) - if($linea['tipo_linea'] == 'lp_bn' || $linea['tipo_linea'] == 'lp_bnhq'){ + if ($linea['tipo_linea'] == 'lp_bn' || $linea['tipo_linea'] == 'lp_bnhq') { $total_plana = 0.0; $total_plana = floatval($linea['total_impresion']); } - } } @@ -75,7 +74,7 @@ class PresupuestoClienteService extends BaseService $paginas_color = $data['paginas_color']; $lineas_cubierta = []; - + for ($i = 0; $i < 2; $i++) { $lineas = PresupuestoService::obtenerComparadorPlana([ @@ -127,7 +126,7 @@ class PresupuestoClienteService extends BaseService $paginas_color = $data['paginas_color']; $lineas_sobrecubierta = []; - + for ($i = 0; $i < 2; $i++) { $lineas = PresupuestoService::obtenerComparadorPlana([ @@ -178,7 +177,7 @@ class PresupuestoClienteService extends BaseService $cliente_id = $data['cliente_id']; $lineas_guardas = []; - + for ($i = 0; $i < 2; $i++) { $lineas = PresupuestoService::obtenerComparadorPlana([ @@ -241,11 +240,21 @@ class PresupuestoClienteService extends BaseService $uso = $data['uso']; $tipo_impresion_id = $data['tipo_impresion_id']; $datosPedido = $data['datosPedido']; - $papel_generico = $data['papel_generico']; - $gramaje = $data['gramaje']; + if ($data['papelInteriorDiferente'] == false) + $papel_generico = $data['papel_generico']; + else { + $papel_generico = $data['papel_generico']['negro']; + $papel_generico_color = $data['papel_generico']['color']; + } + if ($data['papelInteriorDiferente'] == false) + $gramaje = $data['gramaje']; + else { + $gramaje = $data['gramaje']['negro']; + $gramaje_color = $data['gramaje']['color']; + } $isColor = $data['isColor']; $isHq = $data['isHq']; - $cliente_id = $data['cliente_id']; + $cliente_id = $data['cliente_id']; $paginas_color = $data['paginas_color']; $paginas_negro = $datosPedido->paginas - $paginas_color; @@ -335,7 +344,8 @@ class PresupuestoClienteService extends BaseService return [$linea_negro_plana, $linea_color_plana]; } - public static function getServiciosEncuadernacionDefault($data){ + public static function getServiciosEncuadernacionDefault($data) + { $tipo_impresion_id = $data['tipo_impresion_id'] ?? -1; $tirada = $data['tirada'] ?? -1; @@ -351,42 +361,46 @@ class PresupuestoClienteService extends BaseService return $values; } - public static function getServiciosManipulado($data){ + public static function getServiciosManipulado($data) + { $tarifa_id = $data['tarifa_id'] ?? -1; $tirada = $data['tirada'] ?? -1; $POD = $data['POD'] ?? -1; - + $model = model('App\Models\Presupuestos\PresupuestoManipuladosModel'); $values = $model->getPrecioTarifa($tarifa_id, $tirada, $POD); return $values; } - public static function getServiciosPreimpresion($data){ + public static function getServiciosPreimpresion($data) + { $tarifa_id = $data['tarifa_id'] ?? -1; - + $model = model('App\Models\Presupuestos\PresupuestoPreimpresionesModel'); $values = $model->getPrecioTarifa($tarifa_id); return $values; } - public static function getServiciosExtra($data){ + public static function getServiciosExtra($data) + { $tarifa_id = $data['tarifa_id'] ?? -1; - + $model = model('App\Models\Presupuestos\PresupuestoServiciosExtraModel'); $values = $model->getPrecioTarifa($tarifa_id); return $values; } - public static function getServiciosAcabados($data){ + public static function getServiciosAcabados($data) + { $tarifa_id = $data['tarifa_id'] ?? -1; $tirada = $data['tirada'] ?? -1; $POD = $data['POD'] ?? -1; - + $model = model('App\Models\Presupuestos\PresupuestoAcabadosModel'); $values = $model->getPrecioTarifa($tarifa_id, $tirada, -1, $POD); // proveedor más barato return $values; diff --git a/httpdocs/assets/js/safekat/components/select2.js b/httpdocs/assets/js/safekat/components/select2.js index a2b71f22..8062a987 100644 --- a/httpdocs/assets/js/safekat/components/select2.js +++ b/httpdocs/assets/js/safekat/components/select2.js @@ -54,6 +54,9 @@ let ClassSelect = function (domItem, url, placeholder, allowClear = false, param this.reset = function () { this.item.val(null).trigger("change"); }; + this.setParams = function(params){ + this.params = params; + }; this.getVal = function () { return this.item.val(); }; diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js index 6c0dba87..ec9b4079 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js @@ -131,7 +131,7 @@ class Direcciones { #handleChangeCliente() { this.direccionesCliente.setParams({ 'cliente_id': $("#clienteId").select2('data')[0].id }) - this.direccionesCliente.clear(); + this.direccionesCliente.empty(); this.domItem.find('.direccion-cliente').remove(); this.direcciones = []; diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 9b6b17bf..62873e40 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -56,7 +56,7 @@ class PresupuestoCliente { this.disenioCubierta.init(); this.direcciones.init(); - //this.RELLENAR_PRESUPUESTO(); + this.RELLENAR_PRESUPUESTO(); } @@ -213,12 +213,14 @@ class PresupuestoCliente { this.datos = { - clienteId: this.datosGenerales.cliente.getValue(), + clienteId: this.datosGenerales.cliente.getVal(), tamanio: this.datosGenerales.getDimensionLibro(), tirada: this.datosGenerales.getTiradas(), paginas: this.datosGenerales.paginas.val(), paginasColor: this.datosGenerales.paginasColor.val(), + paginasCuadernillo: this.datosGenerales.paginasCuadernillo.val(), + papelInteriorDiferente: this.datosGenerales.papelDiferente.is(':checked'); tipo: this.datosGenerales.tiposLibro.filter('.selected').attr('id'), diff --git a/xdebug.log b/xdebug.log new file mode 100644 index 00000000..4dfdbb8e --- /dev/null +++ b/xdebug.log @@ -0,0 +1,3176 @@ +[23] Log opened at 2024-10-15 11:01:16.760857 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[22] Log opened at 2024-10-15 11:01:51.546275 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] INFO: Connected to debugging client: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] Log opened at 2024-10-15 11:02:42.871357 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:02:43.477767 + +[22] Log opened at 2024-10-15 11:02:43.498261 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:02:43.525336 + +[22] Log opened at 2024-10-15 11:02:43.537256 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:02:43.694088 + +[23] Log opened at 2024-10-15 11:03:32.451165 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:03:32.843735 + +[23] Log opened at 2024-10-15 11:03:32.868396 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:03:32.895964 + +[23] Log opened at 2024-10-15 11:03:32.904654 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:03:33.062004 + +[23] Log opened at 2024-10-15 11:03:33.836505 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:03:34.205043 + +[23] Log opened at 2024-10-15 11:03:34.224625 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:03:34.251566 + +[23] Log opened at 2024-10-15 11:03:34.259408 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:03:34.415287 + +[22] Log opened at 2024-10-15 11:05:40.650579 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:05:41.637939 + +[22] Log opened at 2024-10-15 11:05:41.662013 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:05:42.290410 + +[22] Log opened at 2024-10-15 11:05:42.302016 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:05:43.058621 + +[22] Log opened at 2024-10-15 11:06:16.354030 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[23] Log opened at 2024-10-15 11:06:21.241185 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:06:46.751864 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:06:51.631390 + +[22] Log opened at 2024-10-15 11:06:57.425409 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:06:57.826288 + +[22] Log opened at 2024-10-15 11:06:57.853302 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:06:57.881069 + +[22] Log opened at 2024-10-15 11:06:57.889538 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:06:58.043605 + +[22] Log opened at 2024-10-15 11:07:38.643584 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:07:39.029216 + +[22] Log opened at 2024-10-15 11:07:39.051593 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:07:39.079271 + +[22] Log opened at 2024-10-15 11:07:39.088486 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 0.0.0.0:9003. +[22] [Step Debug] WARN: Creating socket for '0.0.0.0:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 0.0.0.0:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:07:39.243423 + +[22] Log opened at 2024-10-15 11:08:00.458590 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:08:00.860268 + +[22] Log opened at 2024-10-15 11:08:00.886168 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:08:00.914768 + +[22] Log opened at 2024-10-15 11:08:00.922943 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:08:01.079715 + +[22] Log opened at 2024-10-15 11:08:45.941456 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:08:46.925450 + +[22] Log opened at 2024-10-15 11:08:46.951844 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:08:47.580173 + +[22] Log opened at 2024-10-15 11:08:47.588264 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:08:48.342685 + +[22] Log opened at 2024-10-15 11:10:23.139159 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:10:23.537240 + +[22] Log opened at 2024-10-15 11:10:23.566143 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:10:23.593326 + +[22] Log opened at 2024-10-15 11:10:23.601763 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-10-15 11:10:23.702643 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:10:23.760254 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:10:23.775717 + +[24] Log opened at 2024-10-15 11:11:30.748012 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:11:31.139096 + +[24] Log opened at 2024-10-15 11:11:31.163291 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:11:31.190734 + +[24] Log opened at 2024-10-15 11:11:31.199365 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:11:31.354896 + +[24] Log opened at 2024-10-15 11:11:33.264760 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:11:33.664559 + +[24] Log opened at 2024-10-15 11:11:33.695522 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:11:33.722649 + +[24] Log opened at 2024-10-15 11:11:33.731085 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:11:33.882324 + +[25] Log opened at 2024-10-15 11:11:49.855369 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-15 11:11:51.204562 + +[25] Log opened at 2024-10-15 11:11:51.246647 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log opened at 2024-10-15 11:11:51.250926 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-15 11:11:51.278726 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-15 11:11:51.694400 + +[29] Log opened at 2024-10-15 11:11:51.718096 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-10-15 11:11:51.718953 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-10-15 11:11:51.719185 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:11:51.923489 + +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-15 11:11:52.296399 + +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-15 11:11:52.435905 + +[23] Log opened at 2024-10-15 11:11:55.055497 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:11:55.450165 + +[23] Log opened at 2024-10-15 11:11:55.469159 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:11:55.496462 + +[23] Log opened at 2024-10-15 11:11:55.504377 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: localhost:9003. +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Creating socket for 'localhost:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), localhost:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:11:55.662878 + +[22] Log opened at 2024-10-15 11:13:43.315943 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:13:44.293474 + +[22] Log opened at 2024-10-15 11:13:44.318452 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:13:44.946173 + +[22] Log opened at 2024-10-15 11:13:44.955484 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:13:45.713625 + +[22] Log opened at 2024-10-15 11:14:16.952389 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:14:17.947962 + +[22] Log opened at 2024-10-15 11:14:17.969053 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:14:18.597531 + +[22] Log opened at 2024-10-15 11:14:18.608906 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:14:19.365411 + +[22] Log opened at 2024-10-15 11:14:20.338285 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:14:21.309504 + +[22] Log opened at 2024-10-15 11:14:21.336716 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:14:21.965975 + +[22] Log opened at 2024-10-15 11:14:21.974189 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:14:22.725567 + +[23] Log opened at 2024-10-15 11:14:48.188408 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:14:49.180014 + +[23] Log opened at 2024-10-15 11:14:49.204788 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:14:49.834310 + +[23] Log opened at 2024-10-15 11:14:49.842995 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 172.28.188.187:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 172.28.188.187:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:14:50.599887 + +[23] Log opened at 2024-10-15 11:15:07.871692 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:15:08.254585 + +[23] Log opened at 2024-10-15 11:15:08.272863 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:15:08.300427 + +[23] Log opened at 2024-10-15 11:15:08.309160 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:15:08.466605 + +[24] Log opened at 2024-10-15 11:15:22.132573 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:15:23.462599 + +[25] Log opened at 2024-10-15 11:15:23.501064 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-10-15 11:15:23.503851 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-15 11:15:23.533354 + +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:15:23.921432 + +[25] Log opened at 2024-10-15 11:15:23.935441 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-10-15 11:15:23.937873 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-10-15 11:15:23.940223 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-15 11:15:24.149406 + +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:15:24.318606 + +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-15 11:15:24.674433 + +[27] Log opened at 2024-10-15 11:15:34.747425 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-15 11:15:36.070546 + +[27] Log opened at 2024-10-15 11:15:36.107854 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log opened at 2024-10-15 11:15:36.111931 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-10-15 11:15:36.138415 + +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-15 11:15:36.543992 + +[28] Log opened at 2024-10-15 11:15:36.567484 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-10-15 11:15:36.568528 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log opened at 2024-10-15 11:15:36.569879 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:15:36.773162 + +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-10-15 11:15:37.127457 + +[29] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-10-15 11:15:37.267919 + +[22] Log opened at 2024-10-15 11:16:08.560238 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:16:08.939262 + +[23] Log opened at 2024-10-15 11:16:08.958925 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:08.987556 + +[23] Log opened at 2024-10-15 11:16:08.995909 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:09.156033 + +[23] Log opened at 2024-10-15 11:16:10.086502 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:10.456689 + +[23] Log opened at 2024-10-15 11:16:10.475413 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:10.503083 + +[23] Log opened at 2024-10-15 11:16:10.511168 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:10.666187 + +[22] Log opened at 2024-10-15 11:16:40.656051 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:16:41.051951 + +[22] Log opened at 2024-10-15 11:16:41.076782 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:16:41.103989 + +[22] Log opened at 2024-10-15 11:16:41.119473 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:16:41.282019 + +[23] Log opened at 2024-10-15 11:16:57.626131 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:58.959077 + +[23] Log opened at 2024-10-15 11:16:59.026841 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-10-15 11:16:59.031115 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:16:59.059066 + +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:16:59.471270 + +[24] Log opened at 2024-10-15 11:16:59.485503 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log opened at 2024-10-15 11:16:59.487675 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-10-15 11:16:59.492171 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-10-15 11:16:59.711582 + +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:17:00.063536 + +[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-10-15 11:17:00.217141 + +[22] Log opened at 2024-10-15 11:18:38.252000 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:18:38.634159 + +[22] Log opened at 2024-10-15 11:18:38.657190 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:18:38.683910 + +[22] Log opened at 2024-10-15 11:18:38.698453 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:18:38.864688 + +[24] Log opened at 2024-10-15 11:19:48.751728 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:19:49.171372 + +[24] Log opened at 2024-10-15 11:19:49.195157 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:19:49.222610 + +[24] Log opened at 2024-10-15 11:19:49.231742 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:19:49.393132 + +[24] Log opened at 2024-10-15 11:19:51.746363 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:19:52.128306 + +[24] Log opened at 2024-10-15 11:19:52.148407 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:19:52.175529 + +[24] Log opened at 2024-10-15 11:19:52.183494 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: 10.5.0.2:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 10.5.0.2:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-10-15 11:19:52.342306 + +[21] Log opened at 2024-10-15 11:20:04.201100 +[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21' +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] Log closed at 2024-10-15 11:20:05.198324 + +[21] Log opened at 2024-10-15 11:20:05.221756 +[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21' +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] Log closed at 2024-10-15 11:20:05.849478 + +[21] Log opened at 2024-10-15 11:20:05.858273 +[21] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.21' +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[21] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[21] Log closed at 2024-10-15 11:20:06.619346 + +[22] Log opened at 2024-10-15 11:20:33.511263 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:20:33.903047 + +[22] Log opened at 2024-10-15 11:20:33.924157 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:20:33.951511 + +[22] Log opened at 2024-10-15 11:20:33.962451 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:20:34.124605 + +[23] Log opened at 2024-10-15 11:20:58.450452 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:20:58.846547 + +[23] Log opened at 2024-10-15 11:20:58.866566 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:20:58.893426 + +[23] Log opened at 2024-10-15 11:20:58.902245 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:20:59.059477 + +[23] Log opened at 2024-10-15 11:20:59.919858 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:21:00.307939 + +[23] Log opened at 2024-10-15 11:21:00.337052 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:21:00.364755 + +[23] Log opened at 2024-10-15 11:21:00.374239 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:21:00.529752 + +[22] Log opened at 2024-10-15 11:21:13.138908 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:21:13.524380 + +[22] Log opened at 2024-10-15 11:21:13.547196 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:21:13.576715 + +[22] Log opened at 2024-10-15 11:21:13.584854 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:21:13.745910 + +[23] Log opened at 2024-10-15 11:21:36.001480 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:21:36.387805 + +[23] Log opened at 2024-10-15 11:21:36.411814 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:21:36.439458 + +[23] Log opened at 2024-10-15 11:21:36.447913 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:21:36.607552 + +[23] Log opened at 2024-10-15 11:21:39.730216 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:21:41.031523 + +[25] Log opened at 2024-10-15 11:21:41.071412 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[23] Log opened at 2024-10-15 11:21:41.075899 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-10-15 11:21:41.109541 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:21:41.519920 + +[25] Log opened at 2024-10-15 11:21:41.533047 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] -> + +[26] Log opened at 2024-10-15 11:21:41.535363 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[26] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[23] Log opened at 2024-10-15 11:21:41.537116 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-10-15 11:21:41.753129 + +[25] [Step Debug] -> + +[25] Log closed at 2024-10-15 11:21:42.098694 + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:21:42.249660 + +[24] Log opened at 2024-10-15 11:22:08.646971 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-15 11:22:09.970385 + +[24] Log opened at 2024-10-15 11:22:10.003255 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[27] Log opened at 2024-10-15 11:22:10.006318 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-10-15 11:22:10.035584 + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-15 11:22:10.434079 + +[27] Log opened at 2024-10-15 11:22:10.446684 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[22] Log opened at 2024-10-15 11:22:10.451094 +[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-15 11:22:10.451288 +[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. +[22] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] -> + +[28] [Step Debug] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] Log closed at 2024-10-15 11:22:10.664256 + +[27] [Step Debug] -> + +[27] Log closed at 2024-10-15 11:22:11.035282 + +[22] [Step Debug] -> + +[22] Log closed at 2024-10-15 11:22:11.179746 + +[22] Log opened at 2024-10-15 11:24:47.041647 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:24:47.489073 + +[22] Log opened at 2024-10-15 11:24:47.516068 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:24:47.555337 + +[22] Log opened at 2024-10-15 11:24:47.568943 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-10-15 11:24:47.582400 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-10-15 11:24:47.650979 + +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 10.5.0.2:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.2:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.2:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-10-15 11:24:47.748907 + +[22] Log opened at 2024-10-15 11:25:36.439146 +[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] Log closed at 2024-10-15 11:25:37.423004 + +[22] Log opened at 2024-10-15 11:25:37.486200 +[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] Log closed at 2024-10-15 11:25:38.245629 + +[23] Log opened at 2024-10-15 11:25:47.152464 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 3 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 4 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:25:47.599774 + +[23] Log opened at 2024-10-15 11:25:47.621401 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 3 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 4 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:25:47.718273 + +[23] Log opened at 2024-10-15 11:25:47.726838 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 3 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 4 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 10 +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:25:47.938780 + +[23] Log opened at 2024-10-15 11:25:51.617790 +[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] INFO: Connected to debugging client: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 3 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_list -i 4 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Clientes/Cliente.php -n 307 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 93 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 132 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x * +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 11 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 12 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 13 -d 0 -c 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 14 -d 0 -c 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- stop -i 15 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-15 11:25:59.921802 + +[25] Log opened at 2024-10-15 12:00:27.354662 +[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-15 12:00:29.486380 + +[25] Log opened at 2024-10-15 12:00:29.534599 +[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] Log opened at 2024-10-15 12:00:29.535350 +[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] [Step 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-15 12:00:30.164812 + +[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-15 12:00:30.570534 + +[26] Log opened at 2024-10-15 12:00:30.583272 +[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-15 12:00:30.587310 +[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-15 12:00:30.587413 +[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). +[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. +[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-15 12:00:31.427806 + +[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-15 12:00:31.761830 + +[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-15 12:00:32.530846 + +[22] Log opened at 2024-10-15 12:00:47.711953 +[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] Log closed at 2024-10-15 12:00:49.657623 + +[22] Log opened at 2024-10-15 12:00:49.695841 +[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. +[23] Log opened at 2024-10-15 12:00:49.702596 +[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. +[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). +[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). +[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. +[23] [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-15 12:00:50.326448 + +[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-15 12:00:50.717480 + +[23] Log opened at 2024-10-15 12:00:50.730544 +[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. +[24] Log opened at 2024-10-15 12:00:50.733354 +[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-15 12:00:50.734491 +[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. +[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] 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). +[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-15 12:00:51.558157 + +[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. +[22] [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-15 12:00:52.300321 + +[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-15 12:00:52.649179 + +[24] Log opened at 2024-10-15 12:00:56.293292 +[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-15 12:00:58.200869 + +[24] Log opened at 2024-10-15 12:00:58.234653 +[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-15 12:00:58.237518 +[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). +[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-15 12:00:58.862915 + +[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-15 12:00:59.276663 + +[24] Log opened at 2024-10-15 12:00:59.289967 +[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-15 12:00:59.294979 +[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. +[29] Log opened at 2024-10-15 12:00:59.295749 +[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). +[28] [Step 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). +[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-15 12:01:00.110237 + +[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. +[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-15 12:01:00.872794 + +[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-15 12:01:01.228109 + +[30] Log opened at 2024-10-15 12:01:02.493789 +[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-15 12:01:04.423477 + +[30] Log opened at 2024-10-15 12:01:04.478944 +[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. +[23] Log opened at 2024-10-15 12:01:04.522805 +[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. +[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. +[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). +[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-15 12:01:05.106952 + +[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-15 12:01:05.546651 + +[27] Log opened at 2024-10-15 12:01:05.578472 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[25] Log opened at 2024-10-15 12:01:05.578472 +[26] Log opened at 2024-10-15 12:01:05.578513 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[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] [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. +[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). +[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] 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-15 12:01:06.407862 + +[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. +[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-15 12:01:07.133175 + +[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-15 12:01:07.472512 + +[31] Log opened at 2024-10-15 12:01:20.918822 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-15 12:01:21.783709 + +[31] Log opened at 2024-10-15 12:01:21.814532 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-15 12:01:22.667150 + +[30] Log opened at 2024-10-15 12:02:00.413291 +[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-15 12:02:02.385298 + +[30] Log opened at 2024-10-15 12:02:02.487347 +[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. +[23] Log opened at 2024-10-15 12:02:02.522400 +[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. +[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. +[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). +[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-15 12:02:03.116589 + +[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-15 12:02:03.598118 + +[28] Log opened at 2024-10-15 12:02:03.627636 +[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] Log opened at 2024-10-15 12:02:03.628957 +[26] Log opened at 2024-10-15 12:02:03.628961 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[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). +[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). +[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] 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-15 12:02:04.450424 + +[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. +[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). +[28] Log closed at 2024-10-15 12:02:05.196367 + +[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-15 12:02:05.553224 + +[27] Log opened at 2024-10-15 12:03:00.327065 +[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-15 12:03:02.324869 + +[27] Log opened at 2024-10-15 12:03:02.463527 +[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-15 12:03:02.498589 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[27] [Step 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. +[28] [Step 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] Log closed at 2024-10-15 12:03:03.092913 + +[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-15 12:03:03.555162 + +[34] Log opened at 2024-10-15 12:03:03.644952 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[23] Log opened at 2024-10-15 12:03:03.688383 +[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. +[30] Log opened at 2024-10-15 12:03:03.694958 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step 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). +[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). +[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-15 12:03:04.508475 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[30] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-15 12:03:05.265440 + +[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-15 12:03:05.628664 + +[33] Log opened at 2024-10-15 12:03:27.993764 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-15 12:03:29.979531 + +[33] Log opened at 2024-10-15 12:03:30.114146 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] Log opened at 2024-10-15 12:03:30.149870 +[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. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-10-15 12:03:30.742983 + +[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-15 12:03:31.192981 + +[31] Log opened at 2024-10-15 12:03:31.216848 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] Log opened at 2024-10-15 12:03:31.293439 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[35] Log opened at 2024-10-15 12:03:31.294704 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-15 12:03:32.135987 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-10-15 12:03:32.898045 + +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-15 12:03:33.256894 + +[27] Log opened at 2024-10-15 12:03:33.322420 +[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. +[34] Log opened at 2024-10-15 12:03:33.327935 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[35] Log opened at 2024-10-15 12:03:33.334119 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[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). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-10-15 12:03:37.215833 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.28.188.187:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.28.188.187:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-10-15 12:03:40.333295 + +[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-15 12:03:43.390479 +