From 4e3120703e1510cd28044dcfb82cc94c1c733579 Mon Sep 17 00:00:00 2001 From: jaimejimenezortega Date: Thu, 18 Apr 2024 20:40:22 +0200 Subject: [PATCH] trabajando en obtener el gramaje. las funcion calcular mermas hay que colocarla en mejor sitio --- ci4/app/Config/Routes.php | 1 + .../Presupuestos/Presupuestocliente.php | 40 +- ci4/app/Filters/LoginAuthFilter.php | 1 + .../cliente/_disenioLibroItems.php | 158 +- .../presupuestos/cliente/_tipoLibroItems.php | 10 +- .../form/presupuestos/cliente/disenioLibro.js | 212 +- .../cliente/presupuestoCliente.js | 50 +- .../presupuestos/cliente/tipoLibroItems.js | 38 +- .../cliente/viewPresupuestoclienteForm.php | 40 +- .../_datosPresupuestoClienteItems.php | 1 - xdebug.log | 23289 ++++++++++++++++ 11 files changed, 23750 insertions(+), 90 deletions(-) diff --git a/ci4/app/Config/Routes.php b/ci4/app/Config/Routes.php index f71c907d..7bec97af 100755 --- a/ci4/app/Config/Routes.php +++ b/ci4/app/Config/Routes.php @@ -547,6 +547,7 @@ $routes->group('presupuestocliente', ['namespace' => 'App\Controllers\Presupuest $routes->post('add', 'Presupuestocliente::add', ['as' => 'crearPresupuestoCliente']); $routes->post('edit/(:num)', 'Presupuestocliente::edit/$1', ['as' => 'editarPresupuestoCliente']); $routes->post('datatable', 'Cosidotapablanda::datatable', ['as' => 'tablaPresupuestosCliente']); + $routes->post('getgramaje', 'Presupuestocliente::getGramaje', ['as' => 'obtenerGramaje']); }); $routes->resource('presupuestocliente', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Presupuestocliente', 'except' => 'show,new,create,update']); diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 814ab158..0de01977 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -149,13 +149,18 @@ class Presupuestocliente extends \App\Controllers\GoBaseResourceController $presupuestoEntity = isset($sanitizedData) ? new PresupuestoEntity($sanitizedData) : new PresupuestoEntity(); - $presupuestoEntity->POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); $presupuestoEntity->clienteId = $clienteId; $datosPresupuesto = (object)array(); + $datosPresupuesto->POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); $datosPresupuesto->paisList = model('App\Models\Configuracion\PaisModel')->getAllForMenu('id, nombre', 'nombre', true); $datosPresupuesto->papelFormatoList = $this->getPapelFormatoListItems($presupuestoEntity->papel_formato_id ?? null); + $datosPresupuesto->papelInteriorNegro = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('negro', false, false); + $datosPresupuesto->papelInteriorNegroHq = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('negrohq', false, false); + $datosPresupuesto->papelInteriorColor = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('color', false, false); + $datosPresupuesto->papelInteriorColorHq = model('App\Models\Configuracion\PapelGenericoModel')->getPapelForComparador('colorhq', false, false); + $this->viewData['formAction'] = route_to('crearPresupuestoCliente'); $this->viewData['presupuestoEntity'] = $presupuestoEntity; @@ -468,6 +473,39 @@ class Presupuestocliente extends \App\Controllers\GoBaseResourceController return $response; } + public function getGramaje(){ + if ($this->request->isAJAX()) { + + $reqData = $this->request->getPost(); + + try { + $newTokenHash = csrf_hash(); + $csrfTokenName = csrf_token(); + + $tirada = $reqData['tirada'] ?? 0; + $merma = $reqData['merma'] ?? 0; + $papel = $reqData['papel'] ?? ""; + $uso = $reqData['uso'] ?? ""; + + $model = new PapelGenericoModel(); + $menu = $model->getGramajeComparador($papel, $uso, intval($tirada + $merma)); + + $data = [ + 'menu' => $menu, + $csrfTokenName => $newTokenHash + ]; + } catch (Exception $e) { + $data = [ + 'error' => $e, + $csrfTokenName => $newTokenHash + ]; + } finally { + return $this->respond($data); + } + } else { + return $this->failUnauthorized('Invalid request', 403); + } + } public function datatable() { diff --git a/ci4/app/Filters/LoginAuthFilter.php b/ci4/app/Filters/LoginAuthFilter.php index 9c187b01..b88a256d 100755 --- a/ci4/app/Filters/LoginAuthFilter.php +++ b/ci4/app/Filters/LoginAuthFilter.php @@ -187,6 +187,7 @@ class LoginAuthFilter implements FilterInterface 'datatable_editor_2', 'collect', 'cast', + 'getGramaje' ]; } diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php index 1f5a0fe7..05cf226b 100644 --- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php +++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_disenioLibroItems.php @@ -3,30 +3,29 @@
- -
- + +
+
-
- +
+
-
- +
+
-
@@ -39,30 +38,30 @@
- +
- +
- +
- +
@@ -72,15 +71,15 @@
- +
- +
- +
papel_formato_personalizado == false ? '' : 'style="display: none"'; ?>>
-
papel_formato_personalizado == true ? '' : 'style="display: none"'; ?> > -
+
papel_formato_personalizado == true ? '' : 'style="display: none"'; ?>> +
@@ -118,7 +117,7 @@
- +
@@ -127,21 +126,83 @@
-
Color del interior
+
Color del interior
- -
-
- + +
+
+ + +
+
+ +
+
+ + +
+
+
+
Calidad
+
-
Papel
+
+
+ +
+
+
+
+ +
+
-
-
- excluir_rotativa == true ? 'checked' : ''; ?>> - +
+ +
Papel
+
+ +
+ + +
+ +
+ + +
+ +
+ + +
Opciones extra
+
+
+
+ excluir_rotativa == true ? 'checked' : ''; ?>> + +
@@ -158,8 +219,13 @@
- - -
+
+ +section("additionalInlineJs") ?> + + window.routes_disenio_libro = { + obtenerGramaje: "", + } +endSection() ?> \ No newline at end of file diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_tipoLibroItems.php b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_tipoLibroItems.php index 6af494cb..0555f542 100644 --- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_tipoLibroItems.php +++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cliente/_tipoLibroItems.php @@ -2,7 +2,7 @@
-
+
-
+
-
+
-
+
-
+
+
+ " /> +
@@ -291,6 +280,9 @@ section("additionalInlineJs") ?> + window.datosPresupuesto = ; + window.token_ajax= {: v}; + initDisenioLibro(); endSection() ?> diff --git a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php index c6970f76..8b996843 100755 --- a/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php +++ b/ci4/app/Views/themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php @@ -689,7 +689,6 @@ ajax: { url: '', type: 'post', - dataType: 'json', data: function (params) { return { diff --git a/xdebug.log b/xdebug.log index ebb9b07c..178d39c0 100644 --- a/xdebug.log +++ b/xdebug.log @@ -198126,3 +198126,23292 @@ [48] [Step Debug] ERR: Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port). [48] Log closed at 2024-04-18 12:15:55.827560 +[22] Log opened at 2024-04-18 14:46:10.876963 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-04-18 14:46:11.354851 + +[22] Log opened at 2024-04-18 14:46:11.361000 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-04-18 14:46:11.860553 + +[22] Log opened at 2024-04-18 14:46:11.917894 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-04-18 14:46:12.168772 + +[26] Log opened at 2024-04-18 14:46:13.645046 +[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: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal: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: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal: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: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-04-18 14:46:14.058183 + +[28] Log opened at 2024-04-18 14:46:25.828855 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-04-18 14:46:26.335272 + +[28] Log opened at 2024-04-18 14:46:26.350837 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-04-18 14:46:26.890724 + +[28] Log opened at 2024-04-18 14:46:27.016757 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-04-18 14:46:27.254248 + +[29] Log opened at 2024-04-18 14:46:27.456893 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-04-18 14:46:27.864214 + +[32] Log opened at 2024-04-18 14:46:36.911350 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:46:37.372233 + +[32] Log opened at 2024-04-18 14:46:37.399467 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:46:37.927258 + +[32] Log opened at 2024-04-18 14:46:38.072906 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:46:38.308220 + +[33] Log opened at 2024-04-18 14:46:38.508935 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:46:38.888453 + +[27] Log opened at 2024-04-18 14:46:43.932166 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:46:44.399158 + +[30] Log opened at 2024-04-18 14:46:44.422112 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:46:44.987338 + +[30] Log opened at 2024-04-18 14:46:45.132652 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:46:45.381328 + +[30] Log opened at 2024-04-18 14:46:45.558677 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:46:45.936658 + +[30] Log opened at 2024-04-18 14:46:49.491961 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:46:50.468868 + +[31] Log opened at 2024-04-18 14:46:50.588931 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:46:50.843173 + +[31] Log opened at 2024-04-18 14:46:51.075224 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:46:51.492341 + +[31] Log opened at 2024-04-18 14:46:52.546452 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:46:54.386189 + +[31] Log opened at 2024-04-18 14:46:54.533427 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:46:54.778907 + +[31] Log opened at 2024-04-18 14:46:55.083900 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:46:55.487785 + +[31] Log opened at 2024-04-18 14:46:59.429367 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:47:01.710776 + +[31] Log opened at 2024-04-18 14:47:01.850402 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:47:02.117056 + +[31] Log opened at 2024-04-18 14:47:02.442161 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:47:02.881940 + +[31] Log opened at 2024-04-18 14:47:03.119995 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:47:04.000331 + +[31] Log opened at 2024-04-18 14:47:04.193342 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] Log opened at 2024-04-18 14:47:04.205233 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] Log opened at 2024-04-18 14:47:04.206266 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 14:47:04.206960 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] Log opened at 2024-04-18 14:47:04.207658 +[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: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:47:04.451696 + +[23] Log opened at 2024-04-18 14:47:04.456304 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal: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: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-04-18 14:47:04.652579 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:47:04.745935 + +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-04-18 14:47:04.837342 + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] Log closed at 2024-04-18 14:47:04.965589 + +[31] Log opened at 2024-04-18 14:47:05.017471 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:47:05.027429 + +[23] Log opened at 2024-04-18 14:47:05.045309 +[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. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:47:05.400024 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:47:05.546326 + +[27] Log opened at 2024-04-18 14:49:27.680180 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:49:28.528638 + +[27] Log opened at 2024-04-18 14:49:28.686939 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] Log opened at 2024-04-18 14:49:28.704553 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] Log opened at 2024-04-18 14:49:28.705899 +[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: host.docker.internal:9003. +[34] Log opened at 2024-04-18 14:49:28.706302 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[32] Log opened at 2024-04-18 14:49:28.706592 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:49:28.946984 + +[29] Log opened at 2024-04-18 14:49:28.949451 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:49:29.137913 + +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-04-18 14:49:29.229157 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:49:29.359984 + +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal: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: host.docker.internal:9003. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-04-18 14:49:29.445880 + +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] Log opened at 2024-04-18 14:49:29.483111 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-04-18 14:49:29.539287 + +[34] Log opened at 2024-04-18 14:49:29.553919 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:49:29.929053 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-04-18 14:49:30.094904 + +[31] Log opened at 2024-04-18 14:50:39.036723 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:50:39.844925 + +[31] Log opened at 2024-04-18 14:50:40.007068 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-04-18 14:50:40.027325 +[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. +[33] Log opened at 2024-04-18 14:50:40.028901 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] Log opened at 2024-04-18 14:50:40.029673 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] Log opened at 2024-04-18 14:50:40.030136 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:50:40.248981 + +[32] Log opened at 2024-04-18 14:50:40.251506 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:50:40.463903 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:50:40.553368 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:50:40.682884 + +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] Log closed at 2024-04-18 14:50:40.772966 + +[23] Log opened at 2024-04-18 14:50:40.806443 +[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. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:50:40.834002 + +[33] Log opened at 2024-04-18 14:50:40.858372 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:50:41.244618 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:50:41.395149 + +[29] Log opened at 2024-04-18 14:50:47.254966 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-04-18 14:50:48.143953 + +[29] Log opened at 2024-04-18 14:50:48.320578 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] Log opened at 2024-04-18 14:50:48.328014 +[30] Log opened at 2024-04-18 14:50:48.328026 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 14:50:48.328888 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-04-18 14:50:48.329425 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] Log closed at 2024-04-18 14:50:48.759728 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-04-18 14:50:48.818981 + +[34] Log opened at 2024-04-18 14:50:48.835184 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-04-18 14:50:48.906186 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:50:48.999792 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:50:49.132170 + +[30] Log opened at 2024-04-18 14:50:49.182857 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-04-18 14:50:49.334914 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:50:49.587613 + +[35] Log opened at 2024-04-18 14:50:58.338866 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] Log opened at 2024-04-18 14:50:58.338940 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 14:50:58.752961 + +[32] Log closed at 2024-04-18 14:50:58.753000 + +[32] Log opened at 2024-04-18 14:50:58.777319 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] Log opened at 2024-04-18 14:50:58.779330 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:50:59.238871 + +[35] Log closed at 2024-04-18 14:50:59.238898 + +[23] Log opened at 2024-04-18 14:52:44.831072 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:52:45.686853 + +[23] Log opened at 2024-04-18 14:52:46.005540 +[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. +[33] Log opened at 2024-04-18 14:52:46.012930 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] Log opened at 2024-04-18 14:52:46.017205 +[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. +[36] Log opened at 2024-04-18 14:52:46.017672 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[29] Log opened at 2024-04-18 14:52:46.017412 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] Log opened at 2024-04-18 14:52:46.017888 +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:52:46.262784 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-04-18 14:52:46.459792 + +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:52:46.547652 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:52:46.682593 + +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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. +[29] Log closed at 2024-04-18 14:52:46.770538 + +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:52:46.828986 + +[33] Log opened at 2024-04-18 14:52:47.140099 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] Log opened at 2024-04-18 14:52:47.426425 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:52:47.544417 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:52:47.926316 + +[30] Log opened at 2024-04-18 14:53:59.345218 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:54:00.153762 + +[35] Log opened at 2024-04-18 14:54:00.421254 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] Log opened at 2024-04-18 14:54:00.439668 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 14:54:00.440724 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 14:54:00.441124 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] Log opened at 2024-04-18 14:54:00.441819 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 14:54:00.673888 + +[36] Log opened at 2024-04-18 14:54:00.675823 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:54:00.865883 + +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-04-18 14:54:00.953686 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:54:01.042679 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] Log closed at 2024-04-18 14:54:01.190074 + +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-04-18 14:54:01.247844 + +[32] Log opened at 2024-04-18 14:54:01.757073 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log opened at 2024-04-18 14:54:01.947112 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:54:02.122136 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 14:54:02.473587 + +[33] Log opened at 2024-04-18 14:58:54.201935 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:58:55.006359 + +[33] Log opened at 2024-04-18 14:58:55.241179 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] Log opened at 2024-04-18 14:58:55.244650 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[31] Log opened at 2024-04-18 14:58:55.244959 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[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. +[37] Log opened at 2024-04-18 14:58:55.245262 +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 14:58:55.245916 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[30] Log opened at 2024-04-18 14:58:55.246229 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:58:55.494248 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 14:58:55.706611 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 14:58:55.794650 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 14:58:55.881639 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:58:56.014228 + +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-04-18 14:58:56.102345 + +[27] Log opened at 2024-04-18 14:58:56.164797 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 14:58:56.689287 + +[32] Log opened at 2024-04-18 14:59:11.549351 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 14:59:11.936414 + +[35] Log opened at 2024-04-18 14:59:31.589930 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 14:59:32.413981 + +[35] Log opened at 2024-04-18 14:59:32.665107 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] Log opened at 2024-04-18 14:59:32.670132 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] Log opened at 2024-04-18 14:59:32.669975 +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[39] Log opened at 2024-04-18 14:59:32.671028 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 14:59:32.674499 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 14:59:33.229609 + +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-04-18 14:59:33.318528 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 14:59:33.405346 + +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-04-18 14:59:33.493134 + +[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. +[39] Log opened at 2024-04-18 14:59:33.513128 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 14:59:33.625339 + +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-04-18 14:59:34.023081 + +[39] Log opened at 2024-04-18 14:59:38.429031 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-04-18 14:59:38.872041 + +[31] Log opened at 2024-04-18 15:00:52.647101 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:00:53.487282 + +[31] Log opened at 2024-04-18 15:00:53.747595 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] Log opened at 2024-04-18 15:00:53.754241 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[27] Log opened at 2024-04-18 15:00:53.754313 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 15:00:53.755173 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] Log opened at 2024-04-18 15:00:53.755466 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:00:54.000926 + +[38] Log opened at 2024-04-18 15:00:54.003689 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 15:00:54.198956 + +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-04-18 15:00:54.345760 + +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 15:00:54.432624 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] Log closed at 2024-04-18 15:00:54.519366 + +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:00:54.577722 + +[37] Log opened at 2024-04-18 15:00:54.606066 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log opened at 2024-04-18 15:00:54.692232 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-04-18 15:00:54.996733 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 15:00:55.209376 + +[39] Log opened at 2024-04-18 15:05:02.468728 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-04-18 15:05:03.392746 + +[39] Log opened at 2024-04-18 15:05:03.672716 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 15:05:03.676064 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[35] Log opened at 2024-04-18 15:05:03.676220 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] Log opened at 2024-04-18 15:05:03.676547 +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] Log opened at 2024-04-18 15:05:03.676532 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[40] Log opened at 2024-04-18 15:05:03.676737 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:05:03.905730 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 15:05:04.140187 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log closed at 2024-04-18 15:05:04.228605 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-04-18 15:05:04.286100 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:05:04.376205 + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-04-18 15:05:04.521272 + +[40] Log opened at 2024-04-18 15:05:04.697935 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 15:05:04.709607 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:05:05.080871 + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-04-18 15:05:05.211893 + +[27] Log opened at 2024-04-18 15:06:02.068100 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 15:06:02.859063 + +[27] Log opened at 2024-04-18 15:06:03.089070 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-04-18 15:06:03.095429 +[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'. +[33] Log opened at 2024-04-18 15:06:03.095415 +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[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. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] Log opened at 2024-04-18 15:06:03.096250 +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] Log opened at 2024-04-18 15:06:03.096293 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 15:06:03.325304 + +[35] Log opened at 2024-04-18 15:06:03.328407 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:06:03.544674 + +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-04-18 15:06:03.634610 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:06:03.768335 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log closed at 2024-04-18 15:06:03.854870 + +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-04-18 15:06:03.911952 + +[33] Log opened at 2024-04-18 15:06:04.055308 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log opened at 2024-04-18 15:06:04.102052 +[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. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:06:04.440997 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:06:04.633347 + +[31] Log opened at 2024-04-18 15:08:19.501523 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:08:20.305583 + +[31] Log opened at 2024-04-18 15:08:20.571838 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] Log opened at 2024-04-18 15:08:20.578972 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] Log opened at 2024-04-18 15:08:20.580140 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[41] Log opened at 2024-04-18 15:08:20.580374 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-04-18 15:08:20.580921 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:08:20.827775 + +[38] Log opened at 2024-04-18 15:08:20.830647 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-04-18 15:08:21.018058 + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-04-18 15:08:21.150939 + +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-04-18 15:08:21.237252 + +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log closed at 2024-04-18 15:08:21.325697 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:08:21.384131 + +[40] Log opened at 2024-04-18 15:08:21.667196 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-04-18 15:08:21.679366 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-04-18 15:08:22.100756 + +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-04-18 15:08:22.170956 + +[33] Log opened at 2024-04-18 15:09:02.727515 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:09:03.560767 + +[23] Log opened at 2024-04-18 15:09:03.821620 +[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. +[33] Log opened at 2024-04-18 15:09:03.828303 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 15:09:03.829097 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 15:09:03.829800 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-04-18 15:09:03.830516 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:09:04.062037 + +[41] Log opened at 2024-04-18 15:09:04.065201 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:09:04.318900 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:09:04.406958 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:09:04.495306 + +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log closed at 2024-04-18 15:09:04.581466 + +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-04-18 15:09:04.640661 + +[32] Log opened at 2024-04-18 15:09:04.697083 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-04-18 15:09:04.900062 +[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. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:09:05.069988 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:09:05.461644 + +[42] Log opened at 2024-04-18 15:13:08.953093 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-04-18 15:13:09.797336 + +[42] Log opened at 2024-04-18 15:13:10.058454 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] Log opened at 2024-04-18 15:13:10.067294 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-04-18 15:13:10.067962 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] Log opened at 2024-04-18 15:13:10.068393 +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] Log opened at 2024-04-18 15:13:10.068714 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-04-18 15:13:10.317158 + +[43] Log opened at 2024-04-18 15:13:10.319459 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[42] Log opened at 2024-04-18 15:13:10.319536 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:13:10.506835 + +[31] Log opened at 2024-04-18 15:13:10.509414 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-04-18 15:13:10.637409 + +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:13:10.728372 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:13:10.816347 + +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log closed at 2024-04-18 15:13:10.905085 + +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log closed at 2024-04-18 15:13:10.963556 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:13:11.024303 + +[40] Log opened at 2024-04-18 15:13:11.088924 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log opened at 2024-04-18 15:13:11.167950 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] Log opened at 2024-04-18 15:13:11.168302 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-04-18 15:13:11.191308 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[40] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-04-18 15:13:11.476426 + +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:13:11.670352 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:13:11.840624 + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:13:12.010606 + +[32] Log opened at 2024-04-18 15:15:04.269220 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:15:05.085411 + +[23] Log opened at 2024-04-18 15:15:05.405665 +[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. +[32] Log opened at 2024-04-18 15:15:05.415034 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 15:15:05.416097 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-04-18 15:15:05.416635 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] Log opened at 2024-04-18 15:15:05.417410 +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:15:05.665988 + +[43] Log opened at 2024-04-18 15:15:05.668267 +[23] Log opened at 2024-04-18 15:15:05.668244 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [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). +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:15:05.850936 + +[38] Log opened at 2024-04-18 15:15:05.853121 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:15:05.974644 + +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-04-18 15:15:06.061787 + +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] Log closed at 2024-04-18 15:15:06.149315 + +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:15:06.207878 + +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] Log closed at 2024-04-18 15:15:06.298181 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:15:06.356967 + +[38] Log opened at 2024-04-18 15:15:06.504710 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log opened at 2024-04-18 15:15:06.579972 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] Log opened at 2024-04-18 15:15:06.579995 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[45] Log opened at 2024-04-18 15:15:06.587373 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:15:06.914378 + +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-04-18 15:15:07.096098 + +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-04-18 15:15:07.261696 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:15:07.438905 + +[33] Log opened at 2024-04-18 15:16:04.951075 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:16:05.780233 + +[33] Log opened at 2024-04-18 15:16:06.032769 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] Log opened at 2024-04-18 15:16:06.045177 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[32] Log opened at 2024-04-18 15:16:06.045262 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[43] Log opened at 2024-04-18 15:16:06.045463 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] Log opened at 2024-04-18 15:16:06.046038 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:16:06.271864 + +[33] Log opened at 2024-04-18 15:16:06.275241 +[38] Log opened at 2024-04-18 15:16:06.275258 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:16:06.537620 + +[44] Log opened at 2024-04-18 15:16:06.540812 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-04-18 15:16:06.626012 + +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:16:06.713461 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log closed at 2024-04-18 15:16:06.802024 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log closed at 2024-04-18 15:16:06.867579 + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log closed at 2024-04-18 15:16:06.991719 + +[46] Log opened at 2024-04-18 15:16:06.996093 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:16:07.052832 + +[43] Log opened at 2024-04-18 15:16:07.069888 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] Log opened at 2024-04-18 15:16:07.069933 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 15:16:07.133287 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-04-18 15:16:07.383980 + +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:16:07.592385 + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:16:07.760171 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:16:07.932236 + +[45] Log opened at 2024-04-18 15:16:34.246660 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-04-18 15:16:35.062255 + +[23] Log opened at 2024-04-18 15:16:35.379284 +[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. +[45] Log opened at 2024-04-18 15:16:35.385087 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 15:16:35.386158 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-04-18 15:16:35.386589 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] Log opened at 2024-04-18 15:16:35.387120 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:16:35.695365 + +[23] Log opened at 2024-04-18 15:16:35.697933 +[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. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log closed at 2024-04-18 15:16:35.823578 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:16:35.882280 + +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-04-18 15:16:36.011209 + +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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. +[47] Log closed at 2024-04-18 15:16:36.101208 + +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-04-18 15:16:36.159374 + +[38] Log opened at 2024-04-18 15:16:36.208120 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log opened at 2024-04-18 15:16:36.447789 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:16:36.602833 + +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:16:36.995832 + +[44] Log opened at 2024-04-18 15:17:45.553497 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:17:46.436842 + +[44] Log opened at 2024-04-18 15:17:46.751071 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 15:17:46.755906 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] Log opened at 2024-04-18 15:17:46.756721 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] Log opened at 2024-04-18 15:17:46.757566 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[45] Log opened at 2024-04-18 15:17:46.757720 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 15:17:46.757813 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:17:47.034200 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:17:47.213859 + +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-04-18 15:17:47.302019 + +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[44] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-04-18 15:17:47.392318 + +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-04-18 15:17:47.488091 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:17:47.625094 + +[32] Log opened at 2024-04-18 15:17:47.725704 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log opened at 2024-04-18 15:17:47.836814 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-04-18 15:17:48.247300 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:17:48.250965 + +[31] Log opened at 2024-04-18 15:18:09.239650 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:18:10.057320 + +[43] Log opened at 2024-04-18 15:18:10.345172 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-04-18 15:18:10.350518 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 15:18:10.351796 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[33] Log opened at 2024-04-18 15:18:10.351840 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log opened at 2024-04-18 15:18:10.352385 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:18:10.617211 + +[45] Log opened at 2024-04-18 15:18:10.619585 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:18:10.856762 + +[31] Log closed at 2024-04-18 15:18:10.857147 + +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:18:10.952176 + +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log closed at 2024-04-18 15:18:11.041608 + +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[45] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-04-18 15:18:11.100977 + +[49] Log opened at 2024-04-18 15:18:11.336471 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log opened at 2024-04-18 15:18:11.564107 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-04-18 15:18:11.749691 + +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:18:12.072449 + +[32] Log opened at 2024-04-18 15:18:34.295643 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:18:35.113392 + +[32] Log opened at 2024-04-18 15:18:35.357005 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 15:18:35.361838 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[31] Log opened at 2024-04-18 15:18:35.362078 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-04-18 15:18:35.362463 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] Log opened at 2024-04-18 15:18:35.362818 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:18:35.623811 + +[47] Log opened at 2024-04-18 15:18:35.626681 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log closed at 2024-04-18 15:18:35.852310 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-04-18 15:18:35.922880 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:18:36.052132 + +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] Log closed at 2024-04-18 15:18:36.144326 + +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:18:36.207404 + +[38] Log opened at 2024-04-18 15:18:36.288127 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log opened at 2024-04-18 15:18:36.365875 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:18:36.735910 + +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:18:36.881235 + +[49] Log opened at 2024-04-18 15:18:53.060822 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-04-18 15:18:53.904569 + +[43] Log opened at 2024-04-18 15:18:54.197758 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log opened at 2024-04-18 15:18:54.204606 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] Log opened at 2024-04-18 15:18:54.205349 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log opened at 2024-04-18 15:18:54.206451 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log opened at 2024-04-18 15:18:54.207079 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:18:54.430672 + +[33] Log opened at 2024-04-18 15:18:54.433675 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-04-18 15:18:54.637066 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:18:54.738400 + +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-04-18 15:18:54.829953 + +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log closed at 2024-04-18 15:18:54.921099 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-04-18 15:18:54.988418 + +[48] Log opened at 2024-04-18 15:18:55.209084 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log opened at 2024-04-18 15:18:55.274129 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-04-18 15:18:55.603198 + +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:18:55.794159 + +[38] Log opened at 2024-04-18 15:20:18.475105 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:20:19.327883 + +[38] Log opened at 2024-04-18 15:20:19.596264 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] Log opened at 2024-04-18 15:20:19.602815 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] Log opened at 2024-04-18 15:20:19.603081 +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log opened at 2024-04-18 15:20:19.603773 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[52] Log opened at 2024-04-18 15:20:19.603774 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:20:19.859937 + +[51] Log opened at 2024-04-18 15:20:19.863033 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:20:20.075704 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:20:20.172792 + +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[52] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] Log closed at 2024-04-18 15:20:20.262001 + +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log closed at 2024-04-18 15:20:20.351275 + +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 15:20:20.416463 + +[50] Log opened at 2024-04-18 15:20:20.660262 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:20:21.077397 + +[50] Log opened at 2024-04-18 15:20:21.092697 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:20:21.615811 + +[48] Log opened at 2024-04-18 15:20:36.695307 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-04-18 15:20:37.519242 + +[43] Log opened at 2024-04-18 15:20:37.835061 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] Log opened at 2024-04-18 15:20:37.841701 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 15:20:37.842223 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] Log opened at 2024-04-18 15:20:37.842787 +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] Log opened at 2024-04-18 15:20:37.843191 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:20:38.071500 + +[32] Log opened at 2024-04-18 15:20:38.073484 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:20:38.293660 + +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-04-18 15:20:38.406720 + +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[48] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-04-18 15:20:38.541360 + +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log closed at 2024-04-18 15:20:38.634097 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:20:38.693526 + +[47] Log opened at 2024-04-18 15:20:38.933594 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-04-18 15:20:38.978383 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:20:39.321325 + +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:20:39.515176 + +[49] Log opened at 2024-04-18 15:20:58.877231 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-04-18 15:20:59.713713 + +[51] Log opened at 2024-04-18 15:20:59.942182 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log opened at 2024-04-18 15:20:59.948419 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] Log opened at 2024-04-18 15:20:59.949083 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 15:20:59.949897 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-04-18 15:20:59.950472 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 15:21:00.202940 + +[53] Log opened at 2024-04-18 15:21:00.205022 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 15:21:00.403720 + +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] Log closed at 2024-04-18 15:21:00.493961 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:21:00.556648 + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log closed at 2024-04-18 15:21:00.721761 + +[53] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[53] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] Log closed at 2024-04-18 15:21:00.781661 + +[50] Log opened at 2024-04-18 15:21:00.802020 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log opened at 2024-04-18 15:21:00.870298 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:21:01.235685 + +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 15:21:01.379641 + +[32] Log opened at 2024-04-18 15:21:16.066562 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:21:16.905045 + +[32] Log opened at 2024-04-18 15:21:17.122546 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 15:21:17.129819 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] Log opened at 2024-04-18 15:21:17.130484 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-04-18 15:21:17.130956 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-04-18 15:21:17.131719 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:21:17.366322 + +[38] Log opened at 2024-04-18 15:21:17.369136 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:21:17.569954 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-04-18 15:21:17.662917 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 15:21:17.761148 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log closed at 2024-04-18 15:21:17.900527 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:21:17.969308 + +[47] Log opened at 2024-04-18 15:21:18.153620 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-04-18 15:21:18.187808 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:21:18.558336 + +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:21:18.742092 + +[32] Log opened at 2024-04-18 15:28:12.961724 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:28:13.804166 + +[32] Log opened at 2024-04-18 15:28:14.174658 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log opened at 2024-04-18 15:28:14.178824 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[54] Log opened at 2024-04-18 15:28:14.178924 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[47] Log opened at 2024-04-18 15:28:14.179239 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] Log opened at 2024-04-18 15:28:14.179007 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-04-18 15:28:14.180023 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:28:14.412575 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log closed at 2024-04-18 15:28:14.651537 + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:28:14.741820 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] Log closed at 2024-04-18 15:28:14.842418 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] Log closed at 2024-04-18 15:28:14.922643 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:28:14.984392 + +[55] Log opened at 2024-04-18 15:28:15.090390 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[54] Log opened at 2024-04-18 15:28:15.090395 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log closed at 2024-04-18 15:28:15.483427 + +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[55] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log closed at 2024-04-18 15:28:15.599914 + +[57] Log opened at 2024-04-18 15:30:25.282410 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-04-18 15:30:26.158153 + +[57] Log opened at 2024-04-18 15:30:26.424884 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log opened at 2024-04-18 15:30:26.428145 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] Log opened at 2024-04-18 15:30:26.428405 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 15:30:26.429447 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[32] Log opened at 2024-04-18 15:30:26.429127 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-04-18 15:30:26.432006 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 15:30:26.681666 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log closed at 2024-04-18 15:30:26.907194 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-04-18 15:30:26.973092 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-04-18 15:30:27.062963 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:30:27.152703 + +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:30:27.295395 + +[43] Log opened at 2024-04-18 15:30:27.306083 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log opened at 2024-04-18 15:30:27.521000 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] Log closed at 2024-04-18 15:30:27.821130 + +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:30:27.898435 + +[50] Log opened at 2024-04-18 15:30:40.097627 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:30:40.950954 + +[50] Log opened at 2024-04-18 15:30:41.216116 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log opened at 2024-04-18 15:30:41.223534 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[54] Log opened at 2024-04-18 15:30:41.223825 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] Log opened at 2024-04-18 15:30:41.224287 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[58] Log opened at 2024-04-18 15:30:41.224504 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:30:41.476140 + +[57] Log opened at 2024-04-18 15:30:41.479110 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-04-18 15:30:41.683007 + +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 15:30:41.778226 + +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 15:30:41.914899 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log closed at 2024-04-18 15:30:42.005046 + +[57] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[57] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] Log closed at 2024-04-18 15:30:42.065801 + +[51] Log opened at 2024-04-18 15:30:42.196096 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log opened at 2024-04-18 15:30:42.583434 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[51] Log closed at 2024-04-18 15:30:42.583810 + +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-04-18 15:30:43.111074 + +[43] Log opened at 2024-04-18 15:34:27.146035 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:34:27.962615 + +[43] Log opened at 2024-04-18 15:34:28.270202 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 15:34:28.273458 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[50] Log opened at 2024-04-18 15:34:28.273679 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] Log opened at 2024-04-18 15:34:28.273823 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-04-18 15:34:28.274047 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 15:34:28.274772 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 15:34:28.535059 + +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:34:28.743013 + +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 15:34:28.832295 + +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 15:34:28.930004 + +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-04-18 15:34:29.019387 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:34:29.201593 + +[47] Log opened at 2024-04-18 15:34:29.453087 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[59] Log opened at 2024-04-18 15:34:29.453194 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log closed at 2024-04-18 15:34:29.862188 + +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:34:29.980228 + +[56] Log opened at 2024-04-18 15:35:21.348388 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-04-18 15:35:22.205309 + +[56] Log opened at 2024-04-18 15:35:22.490104 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 15:35:22.495743 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] Log opened at 2024-04-18 15:35:22.496235 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] Log opened at 2024-04-18 15:35:22.496349 +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-04-18 15:35:22.496759 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-04-18 15:35:22.729118 + +[58] Log opened at 2024-04-18 15:35:22.731861 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 15:35:22.935099 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:35:23.069406 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 15:35:23.158408 + +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[50] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-04-18 15:35:23.251396 + +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 15:35:23.343485 + +[38] Log opened at 2024-04-18 15:35:23.542175 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-04-18 15:35:23.580481 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:35:23.923770 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 15:35:24.165493 + +[59] Log opened at 2024-04-18 15:37:27.126211 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 15:37:27.968825 + +[59] Log opened at 2024-04-18 15:37:28.260954 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 15:37:28.266743 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[51] Log opened at 2024-04-18 15:37:28.266914 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[56] Log opened at 2024-04-18 15:37:28.267164 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-04-18 15:37:28.268145 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 15:37:28.488358 + +[54] Log opened at 2024-04-18 15:37:28.490876 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 15:37:28.717673 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-04-18 15:37:28.819845 + +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[56] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] Log closed at 2024-04-18 15:37:28.922458 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log closed at 2024-04-18 15:37:29.053976 + +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 15:37:29.117633 + +[47] Log opened at 2024-04-18 15:37:29.344720 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log opened at 2024-04-18 15:37:29.394029 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 15:37:29.743552 + +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 15:37:29.913883 + +[58] Log opened at 2024-04-18 15:38:19.938339 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 15:38:20.778560 + +[58] Log opened at 2024-04-18 15:38:21.063242 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-04-18 15:38:21.071371 +[60] Log opened at 2024-04-18 15:38:21.071371 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 15:38:21.072381 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] Log opened at 2024-04-18 15:38:21.072960 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 15:38:21.297003 + +[61] Log opened at 2024-04-18 15:38:21.299726 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 15:38:21.489507 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 15:38:21.589708 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-04-18 15:38:21.678130 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log closed at 2024-04-18 15:38:21.826100 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-04-18 15:38:21.889640 + +[38] Log opened at 2024-04-18 15:38:22.133050 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:38:22.531748 + +[38] Log opened at 2024-04-18 15:38:22.562032 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-04-18 15:38:23.099499 + +[63] Log opened at 2024-04-18 16:03:39.309826 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:03:40.433022 + +[63] Log opened at 2024-04-18 16:03:40.745391 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] Log opened at 2024-04-18 16:03:40.749434 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] Log opened at 2024-04-18 16:03:40.749800 +[60] Log opened at 2024-04-18 16:03:40.749872 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] Log opened at 2024-04-18 16:03:40.750270 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-04-18 16:03:40.750848 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-04-18 16:03:40.990412 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:03:41.189468 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:03:41.324615 + +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:03:41.413476 + +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[62] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-04-18 16:03:41.508422 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:03:41.605484 + +[58] Log opened at 2024-04-18 16:03:41.629170 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log opened at 2024-04-18 16:03:41.939566 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:03:42.146312 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:03:42.320362 + +[54] Log opened at 2024-04-18 16:03:58.759114 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 16:03:59.574429 + +[47] Log opened at 2024-04-18 16:03:59.828213 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] Log opened at 2024-04-18 16:03:59.835811 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log opened at 2024-04-18 16:03:59.836531 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] Log opened at 2024-04-18 16:03:59.837069 +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log opened at 2024-04-18 16:03:59.837571 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 16:04:00.101513 + +[63] Log opened at 2024-04-18 16:04:00.104083 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 16:04:00.263947 + +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-04-18 16:04:00.351103 + +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 16:04:00.515840 + +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] Log closed at 2024-04-18 16:04:00.606181 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:04:00.673292 + +[51] Log opened at 2024-04-18 16:04:00.740225 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 16:04:00.788945 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 16:04:01.144862 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 16:04:01.292132 + +[60] Log opened at 2024-04-18 16:04:12.292782 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:04:13.128390 + +[60] Log opened at 2024-04-18 16:04:13.410309 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 16:04:13.416557 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[58] Log opened at 2024-04-18 16:04:13.416653 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] Log opened at 2024-04-18 16:04:13.417158 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-04-18 16:04:13.417945 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:04:13.676328 + +[54] Log opened at 2024-04-18 16:04:13.679188 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log closed at 2024-04-18 16:04:13.940310 + +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:04:14.001164 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:04:14.146010 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] Log closed at 2024-04-18 16:04:14.233310 + +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[54] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] Log closed at 2024-04-18 16:04:14.292541 + +[58] Log opened at 2024-04-18 16:04:14.511242 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log opened at 2024-04-18 16:04:14.616192 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:04:14.905466 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:04:15.100924 + +[51] Log opened at 2024-04-18 16:05:49.058244 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 16:05:49.896518 + +[51] Log opened at 2024-04-18 16:05:50.163669 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] Log opened at 2024-04-18 16:05:50.170083 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] Log opened at 2024-04-18 16:05:50.170783 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] Log opened at 2024-04-18 16:05:50.171058 +[61] Log opened at 2024-04-18 16:05:50.171346 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 16:05:50.417336 + +[65] Log opened at 2024-04-18 16:05:50.419726 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-04-18 16:05:50.593567 + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 16:05:50.725385 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:05:50.813677 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:05:50.903976 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:05:50.994585 + +[47] Log opened at 2024-04-18 16:05:51.152952 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] Log opened at 2024-04-18 16:05:51.483202 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[47] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-04-18 16:05:51.534986 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:05:52.000037 + +[63] Log opened at 2024-04-18 16:07:00.948776 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:07:01.760739 + +[67] Log opened at 2024-04-18 16:07:02.042178 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-04-18 16:07:02.046826 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log opened at 2024-04-18 16:07:02.047495 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-04-18 16:07:02.048636 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[60] Log opened at 2024-04-18 16:07:02.048722 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:07:02.311751 + +[65] Log opened at 2024-04-18 16:07:02.313844 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:07:02.509856 + +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log closed at 2024-04-18 16:07:02.650638 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log closed at 2024-04-18 16:07:02.712705 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-04-18 16:07:02.774060 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:07:02.832638 + +[51] Log opened at 2024-04-18 16:07:03.072623 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] Log opened at 2024-04-18 16:07:03.342992 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[51] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log closed at 2024-04-18 16:07:03.449839 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:07:03.884769 + +[66] Log opened at 2024-04-18 16:07:11.291675 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:07:12.090894 + +[66] Log opened at 2024-04-18 16:07:12.367877 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] Log opened at 2024-04-18 16:07:12.376013 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[59] Log opened at 2024-04-18 16:07:12.376046 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-04-18 16:07:12.377471 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] Log opened at 2024-04-18 16:07:12.377878 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:07:12.631789 + +[63] Log opened at 2024-04-18 16:07:12.634751 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:07:12.853346 + +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:07:12.940216 + +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-04-18 16:07:13.026734 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] Log closed at 2024-04-18 16:07:13.115039 + +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:07:13.174307 + +[58] Log opened at 2024-04-18 16:07:13.360061 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:07:13.761382 + +[58] Log opened at 2024-04-18 16:07:13.778631 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:07:14.306836 + +[59] Log opened at 2024-04-18 16:19:56.560229 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:19:57.406391 + +[59] Log opened at 2024-04-18 16:19:57.785287 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] Log opened at 2024-04-18 16:19:57.843774 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log opened at 2024-04-18 16:19:57.845163 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] Log opened at 2024-04-18 16:19:57.847567 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] Log opened at 2024-04-18 16:19:57.859004 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:19:57.991323 + +[60] Log opened at 2024-04-18 16:19:57.996473 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:19:58.296959 + +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:19:58.384368 + +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:19:58.516247 + +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] Log closed at 2024-04-18 16:19:58.610461 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:19:58.672780 + +[63] Log opened at 2024-04-18 16:19:59.027983 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-04-18 16:19:59.365239 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[63] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] Log closed at 2024-04-18 16:19:59.462376 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:19:59.848707 + +[66] Log opened at 2024-04-18 16:23:27.706996 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:23:28.530860 + +[66] Log opened at 2024-04-18 16:23:28.888898 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 16:23:28.944367 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] Log opened at 2024-04-18 16:23:28.946730 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log opened at 2024-04-18 16:23:28.953283 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] Log opened at 2024-04-18 16:23:28.959757 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:23:29.138607 + +[65] Log opened at 2024-04-18 16:23:29.147308 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:23:29.432485 + +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:23:29.520879 + +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-04-18 16:23:29.612308 + +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] Log closed at 2024-04-18 16:23:29.702053 + +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:23:29.764470 + +[59] Log opened at 2024-04-18 16:23:30.286405 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] Log opened at 2024-04-18 16:23:30.286784 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:23:30.692670 + +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:23:30.867240 + +[60] Log opened at 2024-04-18 16:24:16.693340 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:24:17.501285 + +[60] Log opened at 2024-04-18 16:24:17.832724 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log opened at 2024-04-18 16:24:17.910724 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] Log opened at 2024-04-18 16:24:17.911888 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] Log opened at 2024-04-18 16:24:17.911830 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 16:24:17.912119 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:24:18.064253 + +[58] Log opened at 2024-04-18 16:24:18.067450 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:24:18.390362 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:24:18.481700 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:24:18.609777 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] Log closed at 2024-04-18 16:24:18.702196 + +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[58] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] Log closed at 2024-04-18 16:24:18.760866 + +[67] Log opened at 2024-04-18 16:24:18.963357 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:24:19.350663 + +[67] Log opened at 2024-04-18 16:24:19.409223 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:24:19.988177 + +[70] Log opened at 2024-04-18 16:28:47.773568 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:28:48.593743 + +[70] Log opened at 2024-04-18 16:28:48.891837 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log opened at 2024-04-18 16:28:48.896539 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] Log opened at 2024-04-18 16:28:48.896909 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] Log opened at 2024-04-18 16:28:48.897119 +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] Log opened at 2024-04-18 16:28:48.897338 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:28:49.143795 + +[71] Log opened at 2024-04-18 16:28:49.146487 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:28:49.367975 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:28:49.463813 + +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-04-18 16:28:49.621857 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log closed at 2024-04-18 16:28:49.711547 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:28:49.770661 + +[72] Log opened at 2024-04-18 16:28:51.240752 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-04-18 16:28:51.809693 + +[72] Log opened at 2024-04-18 16:28:52.635055 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[72] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[72] Log closed at 2024-04-18 16:28:53.066141 + +[73] Log opened at 2024-04-18 16:30:19.287727 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-04-18 16:30:20.152916 + +[73] Log opened at 2024-04-18 16:30:20.474170 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] Log opened at 2024-04-18 16:30:20.478988 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[69] Log opened at 2024-04-18 16:30:20.479177 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[66] Log opened at 2024-04-18 16:30:20.479249 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 16:30:20.479811 +[60] Log opened at 2024-04-18 16:30:20.479696 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:30:20.732901 + +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:30:20.955440 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] Log closed at 2024-04-18 16:30:21.044651 + +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[73] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[73] Log closed at 2024-04-18 16:30:21.103851 + +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-04-18 16:30:21.193487 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:30:21.286353 + +[69] Log opened at 2024-04-18 16:30:21.592110 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[70] Log opened at 2024-04-18 16:30:21.592147 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:30:21.970238 + +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:30:22.095541 + +[65] Log opened at 2024-04-18 16:30:42.789930 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:30:43.627527 + +[65] Log opened at 2024-04-18 16:30:44.012867 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 16:30:44.036750 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[67] Log opened at 2024-04-18 16:30:44.036893 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 16:30:44.037238 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-04-18 16:30:44.037879 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:30:44.241592 + +[60] Log opened at 2024-04-18 16:30:44.245049 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:30:44.456339 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:30:44.552237 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:30:44.678486 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] Log closed at 2024-04-18 16:30:44.765007 + +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:30:44.823278 + +[67] Log opened at 2024-04-18 16:30:45.382118 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 16:30:45.624902 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:30:45.754938 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:30:46.112290 + +[65] Log opened at 2024-04-18 16:40:30.471491 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:40:31.298255 + +[65] Log opened at 2024-04-18 16:40:31.638072 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 16:40:31.642089 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log opened at 2024-04-18 16:40:31.643230 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] Log opened at 2024-04-18 16:40:31.643591 +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] Log opened at 2024-04-18 16:40:31.643438 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 16:40:31.648880 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:40:31.892852 + +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] Log closed at 2024-04-18 16:40:32.090270 + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:40:32.148656 + +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-04-18 16:40:32.238111 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:40:32.327228 + +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:40:32.471065 + +[74] Log opened at 2024-04-18 16:40:32.651707 +[71] Log opened at 2024-04-18 16:40:32.651746 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 16:40:33.033004 + +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:40:33.166701 + +[69] Log opened at 2024-04-18 16:41:20.718753 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:41:21.556884 + +[69] Log opened at 2024-04-18 16:41:21.786456 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] Log opened at 2024-04-18 16:41:21.791898 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[59] Log opened at 2024-04-18 16:41:21.792131 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-04-18 16:41:21.792716 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[76] Log opened at 2024-04-18 16:41:21.792919 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:41:22.039848 + +[65] Log opened at 2024-04-18 16:41:22.042790 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:41:22.239412 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 16:41:22.331520 + +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:41:22.494782 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] Log closed at 2024-04-18 16:41:22.591361 + +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[65] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] Log closed at 2024-04-18 16:41:22.659479 + +[70] Log opened at 2024-04-18 16:41:22.883179 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-04-18 16:41:22.922471 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:41:23.263631 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 16:41:23.427518 + +[74] Log opened at 2024-04-18 16:42:39.910184 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 16:42:40.777667 + +[74] Log opened at 2024-04-18 16:42:41.088263 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] Log opened at 2024-04-18 16:42:41.139528 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 16:42:41.141944 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log opened at 2024-04-18 16:42:41.155306 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 16:42:41.160496 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 16:42:41.302413 + +[74] Log opened at 2024-04-18 16:42:41.308172 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:42:41.610275 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-04-18 16:42:41.750201 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:42:41.844165 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log closed at 2024-04-18 16:42:41.938290 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 16:42:41.998821 + +[76] Log opened at 2024-04-18 16:42:42.266303 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 16:42:42.600383 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 16:42:42.683255 + +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:42:43.116669 + +[70] Log opened at 2024-04-18 16:43:10.999233 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:43:11.806449 + +[70] Log opened at 2024-04-18 16:43:12.113897 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-04-18 16:43:12.118857 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[60] Log opened at 2024-04-18 16:43:12.118939 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[71] Log opened at 2024-04-18 16:43:12.119137 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log opened at 2024-04-18 16:43:12.120058 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:43:12.397271 + +[74] Log opened at 2024-04-18 16:43:12.400028 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:43:12.554764 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 16:43:12.692430 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:43:12.783581 + +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[78] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[78] Log closed at 2024-04-18 16:43:12.876702 + +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 16:43:12.935758 + +[75] Log opened at 2024-04-18 16:43:14.473379 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 16:43:15.000392 + +[75] Log opened at 2024-04-18 16:43:15.304628 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 16:43:15.689819 + +[76] Log opened at 2024-04-18 16:46:05.188431 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 16:46:06.014553 + +[76] Log opened at 2024-04-18 16:46:06.347484 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 16:46:06.363061 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] Log opened at 2024-04-18 16:46:06.364224 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[79] Log opened at 2024-04-18 16:46:06.363943 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] Log opened at 2024-04-18 16:46:06.364785 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 16:46:06.608124 + +[71] Log opened at 2024-04-18 16:46:06.611119 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:46:06.854503 + +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 16:46:06.948770 + +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[60] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] Log closed at 2024-04-18 16:46:07.035818 + +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] Log closed at 2024-04-18 16:46:07.126953 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 16:46:07.186881 + +[69] Log opened at 2024-04-18 16:46:07.290926 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:46:07.662321 + +[69] Log opened at 2024-04-18 16:46:07.891520 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 16:46:08.404253 + +[74] Log opened at 2024-04-18 17:09:02.744436 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 17:09:03.581215 + +[74] Log opened at 2024-04-18 17:09:03.858782 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-04-18 17:09:03.861892 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[77] Log opened at 2024-04-18 17:09:03.862019 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log opened at 2024-04-18 17:09:03.862654 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] Log opened at 2024-04-18 17:09:03.863201 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[70] Log opened at 2024-04-18 17:09:03.863972 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 17:09:04.128561 + +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:09:04.319361 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log closed at 2024-04-18 17:09:04.453325 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[74] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[74] Log closed at 2024-04-18 17:09:04.511646 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:09:04.601452 + +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-04-18 17:09:04.687535 + +[75] Log opened at 2024-04-18 17:09:04.698716 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log opened at 2024-04-18 17:09:04.857181 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:09:05.213397 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:09:05.261178 + +[79] Log opened at 2024-04-18 17:13:23.333843 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-04-18 17:13:24.174955 + +[79] Log opened at 2024-04-18 17:13:24.668249 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:13:24.682104 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[70] Log opened at 2024-04-18 17:13:24.682342 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[76] Log opened at 2024-04-18 17:13:24.682541 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] Log opened at 2024-04-18 17:13:24.682104 +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] Log opened at 2024-04-18 17:13:24.683049 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:13:24.918799 + +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-04-18 17:13:25.126656 + +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:13:25.253593 + +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[70] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[70] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[70] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[70] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] Log closed at 2024-04-18 17:13:25.343437 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:13:25.431281 + +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-04-18 17:13:25.518152 + +[71] Log opened at 2024-04-18 17:13:25.701447 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:13:25.729057 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:13:26.135391 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:13:26.209085 + +[80] Log opened at 2024-04-18 17:13:49.381227 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-04-18 17:13:50.231442 + +[75] Log opened at 2024-04-18 17:13:50.475408 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] Log opened at 2024-04-18 17:13:50.482298 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 17:13:50.483350 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log opened at 2024-04-18 17:13:50.483919 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-04-18 17:13:50.484891 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:13:50.721090 + +[79] Log opened at 2024-04-18 17:13:50.723900 +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-04-18 17:13:50.986007 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:13:51.073084 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log closed at 2024-04-18 17:13:51.188493 + +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:13:51.246977 + +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[79] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[79] Log closed at 2024-04-18 17:13:51.337368 + +[77] Log opened at 2024-04-18 17:13:51.448177 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log opened at 2024-04-18 17:13:51.601472 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:13:51.837458 + +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:13:52.128073 + +[69] Log opened at 2024-04-18 17:16:04.023242 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:16:04.841042 + +[69] Log opened at 2024-04-18 17:16:05.162865 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 17:16:05.169905 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] Log opened at 2024-04-18 17:16:05.171007 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] Log opened at 2024-04-18 17:16:05.171418 +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] Log opened at 2024-04-18 17:16:05.171763 +[83] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.83' +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:16:05.395728 + +[82] Log opened at 2024-04-18 17:16:05.398541 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:16:05.690040 + +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-04-18 17:16:05.781575 + +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[83] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[83] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[83] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[83] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[83] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[83] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[83] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[83] Log closed at 2024-04-18 17:16:05.876307 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log closed at 2024-04-18 17:16:05.964645 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:16:06.021953 + +[71] Log opened at 2024-04-18 17:16:06.507927 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:16:06.891939 + +[71] Log opened at 2024-04-18 17:16:06.943380 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:16:07.458129 + +[77] Log opened at 2024-04-18 17:17:33.073069 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:17:33.919861 + +[77] Log opened at 2024-04-18 17:17:34.218338 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-04-18 17:17:34.225071 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] Log opened at 2024-04-18 17:17:34.229553 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:17:34.231017 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log opened at 2024-04-18 17:17:34.232022 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:17:34.747271 + +[80] Log opened at 2024-04-18 17:17:34.750060 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:17:35.041716 + +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-04-18 17:17:35.128493 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:17:35.217611 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log closed at 2024-04-18 17:17:35.304335 + +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[80] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[80] Log closed at 2024-04-18 17:17:35.362615 + +[75] Log opened at 2024-04-18 17:17:35.652479 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:17:36.025707 + +[75] Log opened at 2024-04-18 17:17:36.400063 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:17:36.912997 + +[71] Log opened at 2024-04-18 17:22:33.497339 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:22:34.319275 + +[71] Log opened at 2024-04-18 17:22:34.732210 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 17:22:34.735363 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-04-18 17:22:34.736049 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[81] Log opened at 2024-04-18 17:22:34.736417 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[84] Log opened at 2024-04-18 17:22:34.736507 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:22:34.739375 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:22:34.989418 + +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:22:35.186123 + +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[81] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[81] Log closed at 2024-04-18 17:22:35.275859 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:22:35.414400 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:22:35.507301 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:22:35.607680 + +[85] Log opened at 2024-04-18 17:22:35.780797 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log opened at 2024-04-18 17:22:35.914055 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:22:36.298112 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:22:36.311461 + +[75] Log opened at 2024-04-18 17:23:29.655763 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:23:30.462601 + +[75] Log opened at 2024-04-18 17:23:30.752134 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-04-18 17:23:30.758277 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[76] Log opened at 2024-04-18 17:23:30.758323 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] Log opened at 2024-04-18 17:23:30.758683 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] Log opened at 2024-04-18 17:23:30.759554 +[86] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.86' +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:23:30.982490 + +[71] Log opened at 2024-04-18 17:23:30.985745 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:23:31.202883 + +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[86] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[86] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[86] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[86] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[86] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[86] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[86] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[86] Log closed at 2024-04-18 17:23:31.292299 + +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:23:31.442538 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log closed at 2024-04-18 17:23:31.618755 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:23:31.682524 + +[76] Log opened at 2024-04-18 17:23:31.932092 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:23:32.313994 + +[76] Log opened at 2024-04-18 17:23:32.324329 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:23:32.860382 + +[84] Log opened at 2024-04-18 17:24:15.376751 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:24:16.220856 + +[84] Log opened at 2024-04-18 17:24:16.496081 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 17:24:16.513983 +[85] Log opened at 2024-04-18 17:24:16.513983 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] Log opened at 2024-04-18 17:24:16.514818 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-04-18 17:24:16.515028 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:24:16.747200 + +[69] Log opened at 2024-04-18 17:24:16.749759 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:24:16.953014 + +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[75] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[75] Log closed at 2024-04-18 17:24:17.050975 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:24:17.139650 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log closed at 2024-04-18 17:24:17.301807 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:24:17.359922 + +[77] Log opened at 2024-04-18 17:24:17.647817 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log opened at 2024-04-18 17:24:18.006035 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log closed at 2024-04-18 17:24:18.027172 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:24:18.517712 + +[82] Log opened at 2024-04-18 17:25:11.114947 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:25:11.959558 + +[82] Log opened at 2024-04-18 17:25:12.310596 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] Log opened at 2024-04-18 17:25:12.316473 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[84] Log opened at 2024-04-18 17:25:12.316849 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[71] Log opened at 2024-04-18 17:25:12.316426 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] Log opened at 2024-04-18 17:25:12.317744 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:25:12.554669 + +[87] Log opened at 2024-04-18 17:25:12.557827 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-04-18 17:25:12.797149 + +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[76] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[76] Log closed at 2024-04-18 17:25:12.890521 + +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:25:13.036448 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log closed at 2024-04-18 17:25:13.125154 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:25:13.183599 + +[71] Log opened at 2024-04-18 17:25:13.468129 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:25:13.843639 + +[71] Log opened at 2024-04-18 17:25:13.862183 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:25:14.386655 + +[69] Log opened at 2024-04-18 17:25:21.446406 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:25:22.274152 + +[69] Log opened at 2024-04-18 17:25:22.542499 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 17:25:22.547889 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] Log opened at 2024-04-18 17:25:22.548159 +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] Log opened at 2024-04-18 17:25:22.548926 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[89] Log opened at 2024-04-18 17:25:22.549073 +[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' +[89] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[89] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[89] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[89] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[89] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[89] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:25:22.776243 + +[88] Log opened at 2024-04-18 17:25:22.778716 +[88] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.88' +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:25:22.997546 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:25:23.089524 + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[89] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[89] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[89] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[89] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[89] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[89] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:25:23.218347 + +[89] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[89] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[89] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[89] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[89] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[89] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[88] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[88] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[88] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[88] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[88] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[89] Log closed at 2024-04-18 17:25:23.305516 + +[88] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[88] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[88] Log closed at 2024-04-18 17:25:23.390243 + +[77] Log opened at 2024-04-18 17:25:23.641311 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-04-18 17:25:23.936920 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:25:24.040077 + +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:25:24.446950 + +[87] Log opened at 2024-04-18 17:26:07.444459 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:26:08.346180 + +[87] Log opened at 2024-04-18 17:26:08.613087 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 17:26:08.617582 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:26:08.618040 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] Log opened at 2024-04-18 17:26:08.618256 +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log opened at 2024-04-18 17:26:08.618946 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:26:08.864849 + +[89] Log opened at 2024-04-18 17:26:08.867398 +[89] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.89' +[89] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[89] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[89] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[89] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[89] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[89] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[89] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log closed at 2024-04-18 17:26:09.110353 + +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:26:09.171051 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:26:09.262021 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[89] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[89] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[89] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[89] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[89] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[89] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[89] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[89] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[89] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[89] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[89] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[89] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log closed at 2024-04-18 17:26:09.357744 + +[89] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[89] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[89] Log closed at 2024-04-18 17:26:09.421207 + +[71] Log opened at 2024-04-18 17:26:09.450582 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log opened at 2024-04-18 17:26:09.540909 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:26:09.853863 + +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 17:26:10.062812 + +[85] Log opened at 2024-04-18 17:27:54.710798 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:27:55.533197 + +[85] Log opened at 2024-04-18 17:27:55.805901 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log opened at 2024-04-18 17:27:55.819506 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-04-18 17:27:55.820900 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] Log opened at 2024-04-18 17:27:55.821202 +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-04-18 17:27:55.821466 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:27:56.057346 + +[82] Log opened at 2024-04-18 17:27:56.061268 +[82] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.82' +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:27:56.376151 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:27:56.462109 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 17:27:56.551552 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:27:56.642158 + +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[82] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[82] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[82] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[82] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[82] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[82] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[82] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[82] Log closed at 2024-04-18 17:27:56.731270 + +[84] Log opened at 2024-04-18 17:27:56.946264 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:27:57.338413 + +[84] Log opened at 2024-04-18 17:27:57.366618 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:27:57.883304 + +[77] Log opened at 2024-04-18 17:33:19.340217 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:33:20.504228 + +[77] Log opened at 2024-04-18 17:33:20.912187 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] Log opened at 2024-04-18 17:33:20.917230 +[85] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.85' +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] Log opened at 2024-04-18 17:33:20.917592 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] Log opened at 2024-04-18 17:33:20.918216 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] Log opened at 2024-04-18 17:33:20.918096 +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:33:21.154984 + +[69] Log opened at 2024-04-18 17:33:21.158570 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:33:21.391543 + +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-04-18 17:33:21.575679 + +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[85] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[85] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[85] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[85] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[85] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[85] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[85] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[85] Log closed at 2024-04-18 17:33:21.667034 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log closed at 2024-04-18 17:33:21.755889 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:33:21.814479 + +[92] Log opened at 2024-04-18 17:33:22.291179 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-04-18 17:33:22.712884 + +[92] Log opened at 2024-04-18 17:33:22.849806 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-04-18 17:33:23.368321 + +[84] Log opened at 2024-04-18 17:36:17.492731 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:36:18.660224 + +[84] Log opened at 2024-04-18 17:36:18.978457 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 17:36:18.985629 +[90] Log opened at 2024-04-18 17:36:18.985714 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[77] Log opened at 2024-04-18 17:36:18.985922 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] Log opened at 2024-04-18 17:36:18.987016 +[87] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.87' +[93] Log opened at 2024-04-18 17:36:18.986966 +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:36:19.258396 + +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 17:36:19.447588 + +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:36:19.580996 + +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[87] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[87] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[87] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[87] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[87] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[87] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[87] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[87] Log closed at 2024-04-18 17:36:19.667909 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:36:19.758246 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 17:36:19.845928 + +[90] Log opened at 2024-04-18 17:36:20.085885 +[71] Log opened at 2024-04-18 17:36:20.085881 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log closed at 2024-04-18 17:36:20.480765 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:36:20.602665 + +[91] Log opened at 2024-04-18 17:37:07.733666 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 17:37:08.875610 + +[91] Log opened at 2024-04-18 17:37:09.293377 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] Log opened at 2024-04-18 17:37:09.298528 +[92] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.92' +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:37:09.298529 +[77] Log opened at 2024-04-18 17:37:09.299290 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-04-18 17:37:09.299847 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 17:37:09.541859 + +[93] Log opened at 2024-04-18 17:37:09.544364 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:37:09.760662 + +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[92] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[92] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[92] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[92] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[92] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[92] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[92] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[92] Log closed at 2024-04-18 17:37:09.840192 + +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:37:09.977298 + +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 17:37:10.065903 + +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 17:37:10.124855 + +[69] Log opened at 2024-04-18 17:37:10.309600 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:37:10.700127 + +[69] Log opened at 2024-04-18 17:37:11.119662 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:37:11.690406 + +[84] Log opened at 2024-04-18 17:39:12.729338 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:39:13.887269 + +[84] Log opened at 2024-04-18 17:39:14.182971 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 17:39:14.192032 +[90] Log opened at 2024-04-18 17:39:14.191971 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] Log opened at 2024-04-18 17:39:14.192447 +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] Log opened at 2024-04-18 17:39:14.193439 +[95] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.95' +[77] Log opened at 2024-04-18 17:39:14.193825 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:39:14.420252 + +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 17:39:14.700231 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 17:39:14.790931 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:39:14.878269 + +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:39:14.972432 + +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[95] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[95] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[95] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[95] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[95] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[95] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[95] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[95] Log closed at 2024-04-18 17:39:15.061513 + +[90] Log opened at 2024-04-18 17:39:15.289346 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] Log opened at 2024-04-18 17:39:15.332211 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[71] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[71] Log closed at 2024-04-18 17:39:15.713602 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 17:39:15.782978 + +[93] Log opened at 2024-04-18 17:40:16.958079 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 17:40:18.061833 + +[93] Log opened at 2024-04-18 17:40:18.530093 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] Log opened at 2024-04-18 17:40:18.535110 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[91] Log opened at 2024-04-18 17:40:18.535421 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] Log opened at 2024-04-18 17:40:18.535388 +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-04-18 17:40:18.535835 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 17:40:18.789757 + +[84] Log opened at 2024-04-18 17:40:18.792551 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 17:40:18.994457 + +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:40:19.121888 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 17:40:19.228899 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log closed at 2024-04-18 17:40:19.317119 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 17:40:19.375222 + +[69] Log opened at 2024-04-18 17:40:19.759365 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log opened at 2024-04-18 17:40:19.827414 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 17:40:20.157079 + +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 17:40:20.370528 + +[93] Log opened at 2024-04-18 18:12:26.502760 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 18:12:27.593788 + +[93] Log opened at 2024-04-18 18:12:27.908578 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-04-18 18:12:27.912382 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[77] Log opened at 2024-04-18 18:12:27.912469 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] Log opened at 2024-04-18 18:12:27.912936 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log opened at 2024-04-18 18:12:27.912907 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-04-18 18:12:27.915299 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:12:28.171837 + +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 18:12:28.364823 + +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:12:28.489049 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:12:28.577914 + +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:12:28.671405 + +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-04-18 18:12:28.758623 + +[77] Log opened at 2024-04-18 18:12:29.447422 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[91] Log opened at 2024-04-18 18:12:29.447559 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:12:29.850845 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:12:29.918941 + +[94] Log opened at 2024-04-18 18:13:57.254154 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:13:58.368004 + +[94] Log opened at 2024-04-18 18:13:58.622673 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-04-18 18:13:58.638995 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[98] Log opened at 2024-04-18 18:13:58.639000 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[93] Log opened at 2024-04-18 18:13:58.639066 +[93] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.93' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] Log opened at 2024-04-18 18:13:58.639142 +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:13:58.884952 + +[84] Log opened at 2024-04-18 18:13:58.887833 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:13:59.093365 + +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:13:59.229219 + +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[93] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[93] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[93] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[93] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[93] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[93] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[93] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[93] Log closed at 2024-04-18 18:13:59.318098 + +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] Log closed at 2024-04-18 18:13:59.411782 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:13:59.476828 + +[97] Log opened at 2024-04-18 18:13:59.809414 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:14:00.245948 + +[97] Log opened at 2024-04-18 18:14:00.252096 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:14:00.765566 + +[77] Log opened at 2024-04-18 18:14:39.870109 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:14:40.962396 + +[77] Log opened at 2024-04-18 18:14:41.267693 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-04-18 18:14:41.272687 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] Log opened at 2024-04-18 18:14:41.272972 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-04-18 18:14:41.273280 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] Log opened at 2024-04-18 18:14:41.274039 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:14:41.530340 + +[96] Log opened at 2024-04-18 18:14:41.533267 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log closed at 2024-04-18 18:14:41.773287 + +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:14:41.834545 + +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-04-18 18:14:41.923590 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 18:14:42.011683 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:14:42.100011 + +[91] Log opened at 2024-04-18 18:14:42.245220 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log opened at 2024-04-18 18:14:42.300707 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-04-18 18:14:42.507746 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log closed at 2024-04-18 18:14:42.634604 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 18:14:42.741086 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:14:42.959439 + +[98] Log opened at 2024-04-18 18:15:02.496887 +[98] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.98' +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[98] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[98] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[98] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[98] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[98] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[98] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[98] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[98] Log closed at 2024-04-18 18:15:03.014972 + +[77] Log opened at 2024-04-18 18:16:55.292436 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:16:55.808106 + +[77] Log opened at 2024-04-18 18:16:56.313783 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:16:57.465453 + +[99] Log opened at 2024-04-18 18:16:57.717035 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 18:16:57.726662 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-04-18 18:16:57.727873 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] Log opened at 2024-04-18 18:16:57.727697 +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] Log opened at 2024-04-18 18:16:57.728355 +[90] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.90' +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-04-18 18:16:57.975522 + +[94] Log opened at 2024-04-18 18:16:57.977809 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:16:58.222512 + +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[90] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[90] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[90] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[90] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[90] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[90] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[90] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[90] Log closed at 2024-04-18 18:16:58.309139 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:16:58.398164 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] Log closed at 2024-04-18 18:16:58.486063 + +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:16:58.547796 + +[96] Log opened at 2024-04-18 18:16:58.745627 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:16:59.156062 + +[96] Log opened at 2024-04-18 18:16:59.407061 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:16:59.982560 + +[84] Log opened at 2024-04-18 18:17:05.517657 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:17:06.004100 + +[84] Log opened at 2024-04-18 18:17:06.034683 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:17:06.536925 + +[97] Log opened at 2024-04-18 18:17:22.057396 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:17:22.518752 + +[97] Log opened at 2024-04-18 18:17:22.543118 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:17:23.064136 + +[91] Log opened at 2024-04-18 18:24:34.125498 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:24:35.229183 + +[91] Log opened at 2024-04-18 18:24:35.618660 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-04-18 18:24:35.625721 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[84] Log opened at 2024-04-18 18:24:35.625887 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[97] Log opened at 2024-04-18 18:24:35.626019 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] Log opened at 2024-04-18 18:24:35.625579 +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 18:24:35.626594 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:24:35.853383 + +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:24:36.093912 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:24:36.182114 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:24:36.329593 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:24:36.418833 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:24:36.518617 + +[94] Log opened at 2024-04-18 18:24:36.568998 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log opened at 2024-04-18 18:24:36.859004 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[97] Log opened at 2024-04-18 18:24:36.859348 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:24:37.120374 + +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:24:37.271454 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:24:37.286569 + +[96] Log opened at 2024-04-18 18:24:38.235355 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] Log closed at 2024-04-18 18:24:38.793138 + +[99] Log opened at 2024-04-18 18:24:52.107340 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-04-18 18:24:52.559066 + +[99] Log opened at 2024-04-18 18:24:52.581061 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-04-18 18:24:53.122594 + +[100] Log opened at 2024-04-18 18:26:56.751185 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-04-18 18:26:57.684902 + +[100] Log opened at 2024-04-18 18:26:57.958697 +[100] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.100' +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[100] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[100] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[100] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[100] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[100] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[100] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[100] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[100] Log closed at 2024-04-18 18:26:58.261075 + +[102] Log opened at 2024-04-18 18:26:58.675464 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:26:59.144858 + +[102] Log opened at 2024-04-18 18:26:59.901994 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:27:01.737704 + +[102] Log opened at 2024-04-18 18:27:01.933690 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:27:02.172063 + +[102] Log opened at 2024-04-18 18:27:02.691549 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:27:03.111568 + +[84] Log opened at 2024-04-18 18:27:35.962701 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:27:36.897297 + +[84] Log opened at 2024-04-18 18:27:38.094571 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:27:38.532232 + +[84] Log opened at 2024-04-18 18:27:39.730654 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:27:40.882010 + +[84] Log opened at 2024-04-18 18:27:41.151595 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-04-18 18:27:41.161278 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] Log opened at 2024-04-18 18:27:41.161365 +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log opened at 2024-04-18 18:27:41.162400 +[96] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.96' +[99] Log opened at 2024-04-18 18:27:41.162736 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:27:41.406601 + +[101] Log opened at 2024-04-18 18:27:41.410432 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-04-18 18:27:41.563672 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:27:41.713577 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:27:41.802183 + +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[96] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[96] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[96] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[96] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[96] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[96] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[96] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[96] Log closed at 2024-04-18 18:27:41.893208 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-04-18 18:27:41.951290 + +[94] Log opened at 2024-04-18 18:27:42.852725 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[97] Log opened at 2024-04-18 18:27:42.853076 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:27:43.273663 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:27:43.344545 + +[77] Log opened at 2024-04-18 18:28:23.302731 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:28:24.368877 + +[77] Log opened at 2024-04-18 18:28:24.689496 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] Log opened at 2024-04-18 18:28:24.701544 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log opened at 2024-04-18 18:28:24.701973 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[91] Log opened at 2024-04-18 18:28:24.701484 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] Log opened at 2024-04-18 18:28:24.702419 +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:28:24.937658 + +[99] Log opened at 2024-04-18 18:28:24.940422 +[99] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.99' +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-04-18 18:28:25.188699 + +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:28:25.276033 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:28:25.365699 + +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[99] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[99] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[99] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[99] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[99] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] Log closed at 2024-04-18 18:28:25.507179 + +[99] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[99] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[99] Log closed at 2024-04-18 18:28:25.566790 + +[102] Log opened at 2024-04-18 18:28:26.186183 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[91] Log opened at 2024-04-18 18:28:26.186360 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log opened at 2024-04-18 18:28:26.647882 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:28:26.878661 + +[91] Log opened at 2024-04-18 18:28:26.899454 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] Log closed at 2024-04-18 18:28:26.908010 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:28:27.180394 + +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:28:27.416540 + +[101] Log opened at 2024-04-18 18:28:49.669689 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-04-18 18:28:52.038378 + +[101] Log opened at 2024-04-18 18:28:52.345917 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-04-18 18:28:52.352006 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] Log opened at 2024-04-18 18:28:52.352273 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] Log opened at 2024-04-18 18:28:52.353331 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] Log opened at 2024-04-18 18:28:52.353547 +[104] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.104' +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-04-18 18:28:52.591243 + +[103] Log opened at 2024-04-18 18:28:52.594074 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:28:52.830953 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:28:52.976415 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:28:53.076263 + +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[104] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[104] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[104] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[104] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[104] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[104] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[104] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[104] Log closed at 2024-04-18 18:28:53.172846 + +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-04-18 18:28:53.238662 + +[94] Log opened at 2024-04-18 18:28:53.848242 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] Log opened at 2024-04-18 18:28:53.906933 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:28:54.263509 + +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:28:54.483428 + +[102] Log opened at 2024-04-18 18:29:44.684423 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:29:45.804170 + +[102] Log opened at 2024-04-18 18:29:46.093037 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] Log opened at 2024-04-18 18:29:46.101395 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[91] Log opened at 2024-04-18 18:29:46.101393 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] Log opened at 2024-04-18 18:29:46.102642 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] Log opened at 2024-04-18 18:29:46.103213 +[105] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.105' +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:29:46.727135 + +[77] Log opened at 2024-04-18 18:29:46.730121 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-04-18 18:29:46.932065 + +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:29:47.023673 + +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:29:47.162066 + +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[105] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[105] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[105] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[105] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[105] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[105] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[105] Log closed at 2024-04-18 18:29:47.260242 + +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:29:47.319745 + +[84] Log opened at 2024-04-18 18:29:47.769404 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[84] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] Log opened at 2024-04-18 18:29:48.205779 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[84] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[84] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[84] Log closed at 2024-04-18 18:29:48.251658 + +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[91] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[91] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[91] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[91] Log closed at 2024-04-18 18:29:48.726013 + +[103] Log opened at 2024-04-18 18:30:19.300004 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-04-18 18:30:20.455555 + +[103] Log opened at 2024-04-18 18:30:20.783915 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log opened at 2024-04-18 18:30:20.798143 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[97] Log opened at 2024-04-18 18:30:20.798275 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[102] Log opened at 2024-04-18 18:30:20.798496 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] Log opened at 2024-04-18 18:30:20.799060 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[103] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[103] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[103] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[103] Log closed at 2024-04-18 18:30:21.019945 + +[101] Log opened at 2024-04-18 18:30:21.022836 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[102] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[102] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[102] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[102] Log closed at 2024-04-18 18:30:21.251015 + +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[97] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[97] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[97] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[97] Log closed at 2024-04-18 18:30:21.341198 + +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[106] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[106] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[106] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[106] Log closed at 2024-04-18 18:30:21.431103 + +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[101] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] Log closed at 2024-04-18 18:30:21.563929 + +[101] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[101] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[101] Log closed at 2024-04-18 18:30:21.623184 + +[94] Log opened at 2024-04-18 18:30:21.886031 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:30:22.283631 + +[94] Log opened at 2024-04-18 18:30:22.820203 +[94] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.94' +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[94] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[94] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[94] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[94] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[94] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[94] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[94] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[94] Log closed at 2024-04-18 18:30:23.360553 + +[77] Log opened at 2024-04-18 18:30:51.042726 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:30:51.492400 + +[77] Log opened at 2024-04-18 18:30:53.991423 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[77] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[77] Log closed at 2024-04-18 18:30:54.482868 + +[84] Log opened at 2024-04-18 18:32:16.849010 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:32:17.220017 + +[84] Log opened at 2024-04-18 18:32:17.246932 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[84] [Step Debug] -> + +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:32:17.644257 + +[107] Log opened at 2024-04-18 18:32:56.837436 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[107] [Step Debug] -> + +[107] [Step Debug] <- run -i 9 +[107] [Step Debug] -> + +[107] [Step Debug] -> + +[107] Log closed at 2024-04-18 18:32:57.903078 + +[103] Log opened at 2024-04-18 18:32:58.361211 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[107] Log opened at 2024-04-18 18:32:58.369171 +[107] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.107' +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[103] [Step Debug] -> + +[107] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[107] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[107] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[107] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[107] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[107] [Step Debug] -> + +[102] Log opened at 2024-04-18 18:32:58.370515 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[97] Log opened at 2024-04-18 18:32:58.371044 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[102] [Step Debug] -> + +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] Log opened at 2024-04-18 18:32:58.371466 +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[97] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[97] [Step Debug] -> + +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[106] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[107] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[107] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[107] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[102] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[107] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[102] [Step Debug] -> + +[107] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[107] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[97] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[97] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[97] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[103] [Step Debug] <- run -i 9 +[107] [Step Debug] <- run -i 8 +[102] [Step Debug] <- run -i 8 +[97] [Step Debug] <- run -i 5 +[106] [Step Debug] <- run -i 5 +[103] [Step Debug] -> + +[103] Log closed at 2024-04-18 18:32:58.496862 + +[101] Log opened at 2024-04-18 18:32:58.499378 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[97] [Step Debug] -> + +[97] Log closed at 2024-04-18 18:32:58.743169 + +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[106] [Step Debug] -> + +[106] Log closed at 2024-04-18 18:32:58.787001 + +[107] [Step Debug] -> + +[107] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[107] [Step Debug] -> + +[107] Log closed at 2024-04-18 18:32:58.856685 + +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:32:58.889986 + +[102] Log opened at 2024-04-18 18:32:59.229849 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[101] [Step Debug] <- run -i 9 +[102] [Step Debug] <- run -i 9 +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:32:59.558419 + +[101] [Step Debug] -> + +[101] Log closed at 2024-04-18 18:32:59.589172 + +[102] Log opened at 2024-04-18 18:33:00.253937 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 9 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:33:00.690542 + +[77] Log opened at 2024-04-18 18:33:17.284612 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 9 +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:33:17.611163 + +[77] Log opened at 2024-04-18 18:33:17.630688 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 9 +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:33:18.030715 + +[84] Log opened at 2024-04-18 18:34:06.970890 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[84] [Step Debug] -> + +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:34:08.061389 + +[84] Log opened at 2024-04-18 18:34:08.495897 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[91] Log opened at 2024-04-18 18:34:08.501974 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[103] Log opened at 2024-04-18 18:34:08.502331 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] -> + +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[103] [Step Debug] -> + +[97] Log opened at 2024-04-18 18:34:08.503308 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] Log opened at 2024-04-18 18:34:08.503114 +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[97] [Step Debug] -> + +[108] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[108] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[108] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[103] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[103] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[97] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[91] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[103] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[97] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[108] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[91] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[103] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[97] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[108] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[97] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[91] [Step Debug] <- run -i 8 +[103] [Step Debug] <- run -i 8 +[97] [Step Debug] <- run -i 8 +[108] [Step Debug] <- run -i 8 +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:34:08.628681 + +[106] Log opened at 2024-04-18 18:34:08.632084 +[106] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.106' +[106] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[106] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[106] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[106] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[106] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[106] [Step Debug] -> + +[106] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[106] [Step Debug] -> + +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[97] [Step Debug] -> + +[97] Log closed at 2024-04-18 18:34:08.887670 + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[103] [Step Debug] -> + +[103] Log closed at 2024-04-18 18:34:08.920663 + +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:34:09.006925 + +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[108] [Step Debug] -> + +[108] Log closed at 2024-04-18 18:34:09.037141 + +[91] Log opened at 2024-04-18 18:34:09.480493 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[106] [Step Debug] <- run -i 9 +[91] [Step Debug] <- run -i 9 +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:34:09.766406 + +[106] [Step Debug] -> + +[106] Log closed at 2024-04-18 18:34:09.801178 + +[91] Log opened at 2024-04-18 18:34:10.869931 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 9 +[91] [Step Debug] -> + +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:34:11.289703 + +[101] Log opened at 2024-04-18 18:34:17.286785 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[101] [Step Debug] <- run -i 9 +[101] [Step Debug] -> + +[101] Log closed at 2024-04-18 18:34:17.622634 + +[101] Log opened at 2024-04-18 18:34:17.640262 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[101] [Step Debug] <- run -i 9 +[101] [Step Debug] -> + +[101] [Step Debug] -> + +[101] Log closed at 2024-04-18 18:34:18.051055 + +[77] Log opened at 2024-04-18 18:36:31.886343 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 9 +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:36:32.957249 + +[77] Log opened at 2024-04-18 18:36:33.291780 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[97] Log opened at 2024-04-18 18:36:33.328049 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[103] Log opened at 2024-04-18 18:36:33.328211 +[84] Log opened at 2024-04-18 18:36:33.328054 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[109] Log opened at 2024-04-18 18:36:33.328403 +[97] [Step Debug] -> + +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] Log opened at 2024-04-18 18:36:33.328627 +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[103] [Step Debug] -> + +[84] [Step Debug] -> + +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[108] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[109] [Step Debug] -> + +[108] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[108] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[97] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[97] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[109] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[109] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[109] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[77] [Step Debug] <- run -i 9 +[97] [Step Debug] <- run -i 5 +[103] [Step Debug] <- run -i 5 +[84] [Step Debug] <- run -i 5 +[109] [Step Debug] <- run -i 5 +[108] [Step Debug] <- run -i 5 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[108] [Step Debug] -> + +[108] Log closed at 2024-04-18 18:36:33.424628 + +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[97] [Step Debug] -> + +[97] Log closed at 2024-04-18 18:36:33.637046 + +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[109] [Step Debug] -> + +[109] Log closed at 2024-04-18 18:36:33.755353 + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[103] [Step Debug] -> + +[103] Log closed at 2024-04-18 18:36:33.796947 + +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:36:33.820610 + +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:36:33.867723 + +[109] Log opened at 2024-04-18 18:36:34.611786 +[109] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.109' +[109] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[109] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[109] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[109] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[109] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[109] [Step Debug] -> + +[109] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[109] [Step Debug] -> + +[109] [Step Debug] <- run -i 9 +[84] Log opened at 2024-04-18 18:36:34.771375 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[109] [Step Debug] -> + +[109] [Step Debug] -> + +[109] Log closed at 2024-04-18 18:36:35.032840 + +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:36:35.047924 + +[91] Log opened at 2024-04-18 18:36:43.569497 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 9 +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:36:43.911060 + +[91] Log opened at 2024-04-18 18:36:44.082342 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 9 +[91] [Step Debug] -> + +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:36:44.456470 + +[102] Log opened at 2024-04-18 18:36:58.377578 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 9 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:36:59.366386 + +[102] Log opened at 2024-04-18 18:36:59.753770 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 9 +[103] Log opened at 2024-04-18 18:36:59.806406 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[97] Log opened at 2024-04-18 18:36:59.810063 +[97] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.97' +[97] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[97] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[97] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[97] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[97] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[97] [Step Debug] -> + +[97] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[97] [Step Debug] -> + +[110] Log opened at 2024-04-18 18:36:59.814072 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[108] Log opened at 2024-04-18 18:36:59.819154 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[108] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[97] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[103] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[97] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[110] [Step Debug] -> + +[108] [Step Debug] -> + +[102] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[97] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[103] [Step Debug] -> + +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[97] [Step Debug] -> + +[97] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[97] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:36:59.862633 + +[102] Log opened at 2024-04-18 18:36:59.867962 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[103] [Step Debug] <- run -i 9 +[97] [Step Debug] <- run -i 9 +[110] [Step Debug] <- run -i 9 +[108] [Step Debug] <- run -i 9 +[102] [Step Debug] <- run -i 4 +[108] [Step Debug] -> + +[108] Log closed at 2024-04-18 18:37:00.194014 + +[110] [Step Debug] -> + +[110] Log closed at 2024-04-18 18:37:00.238601 + +[103] [Step Debug] -> + +[103] Log closed at 2024-04-18 18:37:00.337849 + +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:37:00.361609 + +[97] [Step Debug] -> + +[97] Log closed at 2024-04-18 18:37:00.395272 + +[108] Log opened at 2024-04-18 18:37:00.942825 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[77] Log opened at 2024-04-18 18:37:00.942838 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[108] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[108] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[108] [Step Debug] -> + +[77] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[77] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[108] [Step Debug] <- run -i 9 +[77] [Step Debug] <- run -i 9 +[108] [Step Debug] -> + +[108] Log closed at 2024-04-18 18:37:01.237060 + +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:37:01.368575 + +[84] Log opened at 2024-04-18 18:37:09.910635 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[84] [Step Debug] -> + +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:37:10.946918 + +[84] Log opened at 2024-04-18 18:37:11.279644 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[91] Log opened at 2024-04-18 18:37:11.287446 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] -> + +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[84] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[84] [Step Debug] -> + +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[101] Log opened at 2024-04-18 18:37:11.288177 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[101] [Step Debug] -> + +[103] Log opened at 2024-04-18 18:37:11.288833 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[103] [Step Debug] -> + +[111] Log opened at 2024-04-18 18:37:11.289378 +[111] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.111' +[111] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[111] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[111] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[111] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[111] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[111] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[111] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[111] [Step Debug] -> + +[111] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[111] [Step Debug] -> + +[111] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[111] [Step Debug] -> + +[111] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[111] [Step Debug] -> + +[84] [Step Debug] <- run -i 9 +[91] [Step Debug] <- run -i 5 +[101] [Step Debug] <- run -i 5 +[103] [Step Debug] <- run -i 5 +[111] [Step Debug] <- run -i 5 +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:37:11.393358 + +[102] Log opened at 2024-04-18 18:37:11.395984 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[103] [Step Debug] -> + +[103] Log closed at 2024-04-18 18:37:11.620797 + +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[101] [Step Debug] -> + +[101] Log closed at 2024-04-18 18:37:11.667584 + +[111] [Step Debug] -> + +[111] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[111] [Step Debug] -> + +[111] Log closed at 2024-04-18 18:37:11.701139 + +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:37:11.786715 + +[91] Log opened at 2024-04-18 18:37:12.198002 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[102] [Step Debug] <- run -i 9 +[91] [Step Debug] <- run -i 9 +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:37:12.476906 + +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:37:12.504456 + +[91] Log opened at 2024-04-18 18:37:13.015601 +[91] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.91' +[91] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[91] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[91] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[91] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[91] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[91] [Step Debug] -> + +[91] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[91] [Step Debug] -> + +[91] [Step Debug] <- run -i 9 +[91] [Step Debug] -> + +[91] [Step Debug] -> + +[91] Log closed at 2024-04-18 18:37:13.438902 + +[108] Log opened at 2024-04-18 18:37:39.535883 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[108] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 9 +[108] [Step Debug] -> + +[108] Log closed at 2024-04-18 18:37:39.871085 + +[108] Log opened at 2024-04-18 18:37:39.894202 +[108] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.108' +[108] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[108] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[108] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[108] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[108] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[108] [Step Debug] -> + +[108] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[108] [Step Debug] -> + +[108] [Step Debug] <- run -i 9 +[108] [Step Debug] -> + +[108] [Step Debug] -> + +[108] Log closed at 2024-04-18 18:37:40.285787 + +[77] Log opened at 2024-04-18 18:38:52.592347 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[77] [Step Debug] <- run -i 9 +[77] [Step Debug] -> + +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:38:53.590395 + +[110] Log opened at 2024-04-18 18:38:53.971471 +[110] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.110' +[110] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[110] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[110] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[110] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[110] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[110] [Step Debug] -> + +[110] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[110] [Step Debug] -> + +[77] Log opened at 2024-04-18 18:38:53.977380 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[110] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[110] [Step Debug] -> + +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[77] [Step Debug] -> + +[84] Log opened at 2024-04-18 18:38:53.978786 +[84] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.84' +[84] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[84] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[84] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[84] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[103] Log opened at 2024-04-18 18:38:53.979122 +[103] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.103' +[84] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[84] [Step Debug] -> + +[103] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[103] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[103] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[103] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] Log opened at 2024-04-18 18:38:53.979185 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[103] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[103] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[110] [Step Debug] -> + +[110] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[110] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[77] [Step Debug] -> + +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] -> + +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[77] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[77] [Step Debug] -> + +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[112] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[77] [Step Debug] -> + +[77] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[77] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[84] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[84] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[103] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[103] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[84] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[103] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[84] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[84] [Step Debug] -> + +[103] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[103] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[110] [Step Debug] <- run -i 9 +[77] [Step Debug] <- run -i 8 +[84] [Step Debug] <- run -i 5 +[103] [Step Debug] <- run -i 5 +[112] [Step Debug] <- run -i 5 +[110] [Step Debug] -> + +[110] Log closed at 2024-04-18 18:38:54.081217 + +[101] Log opened at 2024-04-18 18:38:54.083600 +[101] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.101' +[101] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[101] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[101] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[101] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[101] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[101] [Step Debug] -> + +[101] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[101] [Step Debug] -> + +[77] [Step Debug] -> + +[77] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[77] [Step Debug] -> + +[77] Log closed at 2024-04-18 18:38:54.347869 + +[103] [Step Debug] -> + +[103] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[103] [Step Debug] -> + +[103] Log closed at 2024-04-18 18:38:54.379475 + +[84] [Step Debug] -> + +[84] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[84] [Step Debug] -> + +[84] Log closed at 2024-04-18 18:38:54.409736 + +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[112] [Step Debug] -> + +[112] Log closed at 2024-04-18 18:38:54.444475 + +[112] Log opened at 2024-04-18 18:38:55.791775 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[101] [Step Debug] <- run -i 9 +[112] [Step Debug] <- run -i 9 +[112] [Step Debug] -> + +[112] Log closed at 2024-04-18 18:38:56.083653 + +[101] [Step Debug] -> + +[101] Log closed at 2024-04-18 18:38:56.150056 + +[112] Log opened at 2024-04-18 18:38:57.318895 +[112] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.112' +[112] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[112] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[112] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[112] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[112] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[112] [Step Debug] -> + +[112] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[112] [Step Debug] -> + +[112] [Step Debug] <- run -i 9 +[112] [Step Debug] -> + +[112] [Step Debug] -> + +[112] Log closed at 2024-04-18 18:38:57.774212 + +[102] Log opened at 2024-04-18 18:39:06.222260 +[102] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.102' +[102] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[102] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[102] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[102] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[102] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 479 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 9 +[102] [Step Debug] -> + +[102] [Step Debug] -> + +[102] [Step Debug] <- stack_get -i 10 +[102] [Step Debug] -> + +[102] [Step Debug] <- breakpoint_remove -i 11 -d 1020024 +[102] [Step Debug] -> + +[102] [Step Debug] <- run -i 12 +[102] [Step Debug] -> + +[102] Log closed at 2024-04-18 18:39:14.724666 +