From 14531400053eadfca5208beb126bda639862fae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez=20ORtega?= Date: Wed, 5 Jun 2024 11:35:29 +0200 Subject: [PATCH] terminado dropzone --- .../Presupuestos/Presupuestocliente.php | 46 +- .../Presupuestos/PresupuestoFicheroModel.php | 25 +- .../presupuestos/cliente/_resumenItems.php | 49 +- xdebug.log | 27053 ++++++++++++++++ 4 files changed, 27137 insertions(+), 36 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index cd492ea3..1aaf1de3 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -812,10 +812,14 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController foreach ($files as $file) { $size = filesize($file->file_path); + $splitPath = explode("presupuestos/", $file->file_path); + // se crea un objeto con el nombre del fichero y el tamaño $obj = (object) array( 'name' => $file->nombre, - 'size' => $size); + 'size' => $size, + 'hash' => $splitPath[1] ?? $file->file_path); + // se añade el objeto al array array_push($result, $obj); @@ -832,30 +836,36 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if ($_SERVER['REQUEST_METHOD'] == 'POST') { $presupuesto_id = $_POST['presupuesto_id']; + $old_files = json_decode($_POST['oldFiles']); // Comprobar si se han subido archivos - if (!empty($_FILES['file'])) { - $files = $_FILES['file']; + if (!empty($_FILES['file']) || !empty($old_files)) { + // Borrar los archivos existentes del presupuesto - $model->deleteFiles($presupuesto_id); + $model->deleteFiles($presupuesto_id, $old_files); - // Iterar sobre los archivos - for ($i = 0; $i < count($files['name']); $i++) { - // Aquí puedes acceder a las propiedades del archivo - $name = $files['name'][$i]; - $tmp_name = $files['tmp_name'][$i]; + if (!empty($_FILES['file'])){ + $files = $_FILES['file']; - $new_name = $model->saveFileInBBDD($presupuesto_id, $name, auth()->id()); - - // Se sube el fichero - // Pero primero se comprueba que la carpeta presupuestos exista - if (!is_dir(WRITEPATH . 'uploads/presupuestos')) { - mkdir(WRITEPATH . 'uploads/presupuestos', 0777, true); - } + // Iterar sobre los archivos + for ($i = 0; $i < count($files['name']); $i++) { + // Aquí puedes acceder a las propiedades del archivo + $name = $files['name'][$i]; + $extension = explode('.', $files['name'][$i])[1]; + $tmp_name = $files['tmp_name'][$i]; - if(!is_null($new_name)){ - move_uploaded_file($tmp_name, WRITEPATH . 'uploads/presupuestos/' . $new_name); + $new_name = $model->saveFileInBBDD($presupuesto_id, $name, $extension, auth()->id()); + + // Se sube el fichero + // Pero primero se comprueba que la carpeta presupuestos exista + if (!is_dir(WRITEPATH . 'uploads/presupuestos')) { + mkdir(WRITEPATH . 'uploads/presupuestos', 0777, true); + } + + if(!is_null($new_name)){ + move_uploaded_file($tmp_name, WRITEPATH . 'uploads/presupuestos/' . $new_name); + } } } } diff --git a/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php b/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php index b04c7366..46ab3db6 100644 --- a/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php @@ -24,10 +24,10 @@ class PresupuestoFicheroModel extends \App\Models\BaseModel public static $labelField = "nombre"; - public function saveFileInBBDD($presupuesto_id, $filename, $user_id) { + public function saveFileInBBDD($presupuesto_id, $filename, $extension ,$user_id) { try{ - $new_filename = $this->generateFileHash($filename); - + $new_filename = $this->generateFileHash($filename) . '.' . $extension; + $this->db->table($this->table . " t1") ->set('presupuesto_id', $presupuesto_id) ->set('nombre', $filename) @@ -42,21 +42,28 @@ class PresupuestoFicheroModel extends \App\Models\BaseModel } } - public function deleteFiles($presupuesto_id){ + public function deleteFiles($presupuesto_id, $old_files = []){ $files = $this->db ->table($this->table . " t1") ->where('presupuesto_id', $presupuesto_id)->get()->getResult(); if($files){ foreach($files as $file){ - if(file_exists($file->file_path)){ - unlink($file->file_path); + + // se comprueba que el $file->nombre no sea igual a ninguno de los elementos del array $old_files + if (!in_array($file->nombre, $old_files)) { + if (file_exists($file->file_path)) { + unlink($file->file_path); + } + + $this->db + ->table($this->table . " t1") + ->where('presupuesto_id', $presupuesto_id) + ->where('nombre', $file->nombre) + ->delete(); } } } - $this->db - ->table($this->table . " t1") - ->where('presupuesto_id', $presupuesto_id)->delete(); } diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php index 4ad2c3fe..45d3720d 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/_resumenItems.php @@ -206,8 +206,8 @@ if(estado_id?>==2){ const previewTemplate = `
- - No preview +
@@ -231,10 +231,12 @@ if(estado_id?>==2){ parallelUploads: 4, // Ajusta este número al máximo número de archivos que esperas subir a la vez maxFiles: 5, // Ajusta este número al máximo número de archivos que esperas subir a la vez autoProcessQueue: true, + dictRemoveFile: "Eliminar", acceptedFiles: 'image/*, application/pdf', maxFilesize: 5e+7, // Bytes init: function() { thisDropzone = this; + $('#loader').show(); $.ajax({ url: "", @@ -247,12 +249,28 @@ if(estado_id?>==2){ } values = JSON.parse(response); for(var i = 0; i < values.length; i++){ - var mockFile = { name: values[i].name, size: values[i].size }; - thisDropzone.options.addedfile.call(thisDropzone, mockFile); - thisDropzone.options.thumbnail.call(thisDropzone, mockFile, "uploads/"+values[i].name); - thisDropzone.options.complete.call(thisDropzone, mockFile); + var mockFile = { name: values[i].name, size: values[i].size, hash: values[i].hash}; + + thisDropzone.files.push(mockFile); // add to files array + thisDropzone.emit("addedfile", mockFile); + thisDropzone.emit("thumbnail", mockFile, window.location.host + "/sistema/intranet/presupuestos/"+values[i].hash); + thisDropzone.emit("complete", mockFile); thisDropzone.options.success.call(thisDropzone, mockFile); }; + }).always(function() { + $('#loader').hide(); + }); + + this.on("addedfile", function (file) { + if(file.hash){ + var viewButton = Dropzone.createElement("Ver"); + file.previewElement.appendChild(viewButton); + // Listen to the view button click event + viewButton.addEventListener("click", function (e) { + + window.open(window.location.protocol + "//" + window.location.host + "/sistema/intranet/presupuestos/"+file.hash, '_blank'); + }); + } }); } }); @@ -260,12 +278,23 @@ if(estado_id?>==2){ $('#presupuesto-cliente-form').submit(function(e){ e.preventDefault(); var files = dropzoneMulti.files; + $('#loader').show(); var formData = new FormData(); + var oldFiles = []; + var counter = 0; for (var i = 0; i < files.length; i++) { - var file = files[i]; - formData.append('file[' + i + ']', file); + + if(files[i].upload){ + var file = files[i]; + formData.append('file[' + counter + ']', file); + counter += 1; + } + else{ + oldFiles.push(files[i].name); + } } + formData.append('oldFiles', JSON.stringify(oldFiles)); formData.append('presupuesto_id', id ?>); @@ -277,7 +306,9 @@ if(estado_id?>==2){ contentType: false // Indicar a jQuery que no establezca el tipo de contenido }).done(function(response) { // Aquí puedes manejar la respuesta del servidor - }); + }).always(function() { + $('#loader').hide(); + }) return false; }); diff --git a/xdebug.log b/xdebug.log index b8c3f495..d6fe8b59 100644 --- a/xdebug.log +++ b/xdebug.log @@ -837459,3 +837459,27056 @@ Stack trace: [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-06-04 17:29:58.862768 +[22] Log opened at 2024-06-05 04:20:06.877651 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-06-05 04:20:18.067331 + +[22] Log opened at 2024-06-05 04:20:18.146072 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-06-05 04:20:25.606809 + +[22] Log opened at 2024-06-05 04:20:25.808547 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-06-05 04:20:27.689889 + +[25] Log opened at 2024-06-05 04:20:29.385748 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-06-05 04:20:34.506827 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:20:34.713847 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:20:44.580033 + +[30] Log opened at 2024-06-05 04:20:44.603497 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:20:51.292805 + +[30] Log opened at 2024-06-05 04:20:51.420208 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:20:53.036926 + +[32] Log opened at 2024-06-05 04:20:53.252657 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:20:57.226297 + +[32] Log opened at 2024-06-05 04:21:01.275767 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:21:11.421397 + +[32] Log opened at 2024-06-05 04:21:11.629536 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:21:13.427788 + +[23] Log opened at 2024-06-05 04:21:13.731559 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log opened at 2024-06-05 04:21:13.943498 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-06-05 04:21:16.716375 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-06-05 04:21:20.272235 + +[26] Log opened at 2024-06-05 04:21:25.715670 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:21:39.023783 + +[26] Log opened at 2024-06-05 04:21:39.233970 +[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. +[30] Log opened at 2024-06-05 04:21:39.246693 +[22] Log opened at 2024-06-05 04:21:39.247273 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[31] Log opened at 2024-06-05 04:21:39.247698 +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[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). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] 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). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging 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). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 04:21:39.288017 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log opened at 2024-06-05 04:21:39.468997 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:21:40.310878 + +[26] Log opened at 2024-06-05 04:21:40.329532 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:21:42.712665 + +[30] Log opened at 2024-06-05 04:21:42.729576 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-06-05 04:21:43.396493 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:21:45.151398 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:21:46.863066 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:21:47.379329 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:21:49.016193 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:21:49.548795 + +[22] Log opened at 2024-06-05 04:21:49.596031 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log opened at 2024-06-05 04:21:49.666049 +[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. +[33] Log opened at 2024-06-05 04:21:49.669609 +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: 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. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-06-05 04:21:51.557743 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:21:53.522292 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:21:54.947560 + +[25] Log opened at 2024-06-05 04:23:18.601558 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:23:28.531510 + +[34] Log opened at 2024-06-05 04:23:29.157174 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log opened at 2024-06-05 04:23:29.443416 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:23:31.701329 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:23:36.526279 + +[32] Log opened at 2024-06-05 04:23:38.421299 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:23:50.122455 + +[27] Log opened at 2024-06-05 04:23:50.490277 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[33] Log opened at 2024-06-05 04:23:50.494683 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[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). +[32] Log opened at 2024-06-05 04:23:50.497965 +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[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). +[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'. +[33] [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 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. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] Log opened at 2024-06-05 04:23:50.508331 +[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] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log opened at 2024-06-05 04:23:50.525452 +[31] Log opened at 2024-06-05 04:23:50.526692 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[22] [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'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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). +[22] [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. +[22] [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', poll success, but error: Operation now in progress (29). +[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). +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:23:59.773904 + +[32] Log opened at 2024-06-05 04:23:59.796536 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:24:01.875004 + +[33] Log opened at 2024-06-05 04:24:01.889361 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:24:03.643842 + +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-06-05 04:24:03.867960 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-06-05 04:24:06.274917 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:24:08.595933 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:24:10.935024 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:24:11.693555 + +[32] Log opened at 2024-06-05 04:24:11.772497 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log opened at 2024-06-05 04:24:11.871671 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:24:15.130802 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:24:17.012270 + +[32] Log opened at 2024-06-05 04:24:19.599860 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log opened at 2024-06-05 04:24:22.341000 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:24:27.051058 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-06-05 04:24:34.262759 + +[23] Log opened at 2024-06-05 04:24:34.573608 +[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. +[26] Log opened at 2024-06-05 04:24:34.583354 +[33] Log opened at 2024-06-05 04:24:34.583335 +[34] Log opened at 2024-06-05 04:24:34.583439 +[25] Log opened at 2024-06-05 04:24:34.583486 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] Log opened at 2024-06-05 04:24:34.584937 +[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). +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[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'. +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [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). +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [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. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [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 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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-06-05 04:24:35.830632 + +[23] Log opened at 2024-06-05 04:24:35.852637 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:24:37.846527 + +[33] Log opened at 2024-06-05 04:24:37.868902 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:24:38.997953 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:24:40.634220 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:24:42.445121 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-06-05 04:24:42.945468 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:24:44.657149 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:24:45.143579 + +[33] Log opened at 2024-06-05 04:24:45.200421 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-06-05 04:24:45.233430 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:24:47.305243 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:24:48.670799 + +[33] Log opened at 2024-06-05 04:24:48.726142 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:24:57.142573 + +[33] Log opened at 2024-06-05 04:24:57.207241 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:25:03.903626 + +[27] Log opened at 2024-06-05 04:25:15.655095 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-06-05 04:25:24.569014 + +[27] Log opened at 2024-06-05 04:25:24.883809 +[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-06-05 04:25:24.895196 +[31] Log opened at 2024-06-05 04:25:24.895316 +[35] Log opened at 2024-06-05 04:25:24.895389 +[25] Log opened at 2024-06-05 04:25:24.895176 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[32] Log opened at 2024-06-05 04:25:24.895354 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[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'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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). +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: 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. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [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. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] ERR: Could not connect to debugging 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] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-06-05 04:25:26.033710 + +[27] Log opened at 2024-06-05 04:25:26.053660 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:25:28.615033 + +[30] Log opened at 2024-06-05 04:25:28.631188 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:25:29.033764 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:25:29.521795 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:25:29.924101 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-06-05 04:25:30.358037 + +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:25:31.922017 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:25:32.427017 + +[35] Log opened at 2024-06-05 04:25:32.481356 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-06-05 04:25:32.525290 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:25:34.582990 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:25:36.047761 + +[35] Log opened at 2024-06-05 04:25:36.097567 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:25:44.797333 + +[35] Log opened at 2024-06-05 04:25:44.836129 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:25:51.059043 + +[34] Log opened at 2024-06-05 04:26:00.584992 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:26:18.647652 + +[34] Log opened at 2024-06-05 04:26:19.019910 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[26] Log opened at 2024-06-05 04:26:19.024013 +[33] Log opened at 2024-06-05 04:26:19.024072 +[32] Log opened at 2024-06-05 04:26:19.024128 +[31] Log opened at 2024-06-05 04:26:19.024253 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[36] Log opened at 2024-06-05 04:26:19.028138 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[32] [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'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [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] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [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). +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [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. +[26] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:26:20.497146 + +[34] Log opened at 2024-06-05 04:26:20.519012 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:26:24.114427 + +[26] Log opened at 2024-06-05 04:26:24.129078 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:26:24.580882 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 04:26:25.945424 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-06-05 04:26:26.897931 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:26:28.601377 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:26:29.117556 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:26:29.666605 + +[31] Log opened at 2024-06-05 04:26:29.727050 +[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', poll success, but error: Operation now in progress (29). +[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). +[26] Log opened at 2024-06-05 04:26:29.748810 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:26:32.305997 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:26:33.155496 + +[31] Log opened at 2024-06-05 04:26:33.226521 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:26:40.843913 + +[25] Log opened at 2024-06-05 04:29:02.558373 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:29:18.895049 + +[25] Log opened at 2024-06-05 04:29:19.177733 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] Log opened at 2024-06-05 04:29:19.189847 +[35] Log opened at 2024-06-05 04:29:19.190283 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[33] Log opened at 2024-06-05 04:29:19.190971 +[30] Log opened at 2024-06-05 04:29:19.191035 +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log opened at 2024-06-05 04:29:19.192154 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [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] [Step Debug] INFO: Checking header '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. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [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 header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [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 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. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:29:20.676180 + +[25] Log opened at 2024-06-05 04:29:20.696604 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:29:24.121209 + +[35] Log opened at 2024-06-05 04:29:24.136649 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:29:25.511888 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:29:27.860219 + +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-06-05 04:29:29.556736 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 04:29:31.238678 + +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-06-05 04:29:33.347579 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:29:33.888449 + +[36] Log opened at 2024-06-05 04:29:33.952376 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log opened at 2024-06-05 04:29:34.020135 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 04:29:36.569186 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:29:38.528216 + +[36] Log opened at 2024-06-05 04:29:38.590204 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 04:29:44.912782 + +[34] Log opened at 2024-06-05 04:30:00.374107 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:30:12.577606 + +[34] Log opened at 2024-06-05 04:30:12.829906 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[31] Log opened at 2024-06-05 04:30:12.830956 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[30] Log opened at 2024-06-05 04:30:12.833945 +[37] Log opened at 2024-06-05 04:30:12.834133 +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] Log opened at 2024-06-05 04:30:12.834299 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] Log opened at 2024-06-05 04:30:12.834693 +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[34] [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'. +[34] [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'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [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. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:30:15.620639 + +[30] Log opened at 2024-06-05 04:30:15.638397 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-06-05 04:30:16.078789 + +[37] Log opened at 2024-06-05 04:30:16.091685 +[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', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:30:16.544597 + +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-06-05 04:30:17.231879 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:30:17.550476 + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-06-05 04:30:19.200529 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 04:30:21.081354 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:30:21.675471 + +[30] Log opened at 2024-06-05 04:30:21.784763 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log opened at 2024-06-05 04:30:21.833807 +[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', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:30:24.159028 + +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-06-05 04:30:25.585373 + +[30] Log opened at 2024-06-05 04:30:25.663432 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 04:30:32.344137 + +[35] Log opened at 2024-06-05 04:30:43.351658 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:30:52.152111 + +[26] Log opened at 2024-06-05 04:30:52.486217 +[35] Log opened at 2024-06-05 04:30:52.486282 +[36] Log opened at 2024-06-05 04:30:52.486595 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[39] Log opened at 2024-06-05 04:30:52.490433 +[33] Log opened at 2024-06-05 04:30:52.490972 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] Log opened at 2024-06-05 04:30:52.492121 +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [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. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging 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', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging 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). +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: 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). +[34] [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. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging 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). +[34] Log closed at 2024-06-05 04:30:55.259933 + +[33] Log closed at 2024-06-05 04:30:55.260100 + +[34] Log opened at 2024-06-05 04:30:55.274696 +[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. +[33] Log opened at 2024-06-05 04:30:55.279831 +[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. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 04:30:55.803098 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:30:56.215926 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 04:30:56.902609 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 04:30:58.466511 + +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-06-05 04:31:00.155707 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:31:00.646589 + +[33] Log opened at 2024-06-05 04:31:00.701260 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log opened at 2024-06-05 04:31:00.801988 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:31:02.879735 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 04:31:04.355450 + +[33] Log opened at 2024-06-05 04:31:04.409539 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 04:31:11.107481 + +[31] Log opened at 2024-06-05 05:07:23.132526 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:07:33.840435 + +[31] Log opened at 2024-06-05 05:07:33.901243 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:07:41.491796 + +[31] Log opened at 2024-06-05 05:07:41.759883 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:07:43.600401 + +[31] Log opened at 2024-06-05 05:07:44.205712 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 05:07:46.551428 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:07:47.473799 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:07:56.560060 + +[36] Log opened at 2024-06-05 05:07:56.602617 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:08:07.974379 + +[36] Log opened at 2024-06-05 05:08:08.352899 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-06-05 05:08:08.378786 +[35] Log opened at 2024-06-05 05:08:08.379037 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[39] Log opened at 2024-06-05 05:08:08.379718 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[26] [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'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] Log opened at 2024-06-05 05:08:08.383535 +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] Log opened at 2024-06-05 05:08:08.384304 +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[39] [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. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [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). +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [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. +[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. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: 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). +[34] [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 'host.docker.internal: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. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal: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. +[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). +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging 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). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:08:09.785793 + +[36] Log opened at 2024-06-05 05:08:09.805466 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:08:13.687130 + +[35] Log opened at 2024-06-05 05:08:13.702596 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:08:15.084661 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:08:16.521065 + +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-06-05 05:08:18.282703 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:08:20.039424 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:08:20.571548 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:08:21.103147 + +[34] Log opened at 2024-06-05 05:08:21.167641 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log opened at 2024-06-05 05:08:21.258615 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:08:23.367261 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:08:24.842629 + +[34] Log opened at 2024-06-05 05:08:24.892441 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:08:33.757867 + +[34] Log opened at 2024-06-05 05:08:33.799656 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:08:41.060716 + +[40] Log opened at 2024-06-05 05:09:17.767168 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:09:31.481372 + +[26] Log opened at 2024-06-05 05:09:31.816330 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[31] Log opened at 2024-06-05 05:09:31.817518 +[40] Log opened at 2024-06-05 05:09:31.817728 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[41] Log opened at 2024-06-05 05:09:31.817828 +[30] Log opened at 2024-06-05 05:09:31.817759 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] Log opened at 2024-06-05 05:09:31.823098 +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [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. +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] 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. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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] ERR: Could not connect to debugging 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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:09:35.186979 + +[40] Log opened at 2024-06-05 05:09:35.203514 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:09:35.642814 + +[26] Log opened at 2024-06-05 05:09:35.655355 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:09:36.110364 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:09:36.861174 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:09:37.509079 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:09:39.252355 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:09:41.276768 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:09:41.801454 + +[30] Log opened at 2024-06-05 05:09:41.852311 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log opened at 2024-06-05 05:09:41.899609 +[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', poll success, but error: Operation now in progress (29). +[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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:09:44.029693 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:09:45.419156 + +[30] Log opened at 2024-06-05 05:09:45.483825 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:09:54.963246 + +[30] Log opened at 2024-06-05 05:09:55.004405 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:10:01.536802 + +[36] Log opened at 2024-06-05 05:10:31.481876 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:10:44.365076 + +[35] Log opened at 2024-06-05 05:10:44.663435 +[36] Log opened at 2024-06-05 05:10:44.663481 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[34] Log opened at 2024-06-05 05:10:44.664306 +[33] Log opened at 2024-06-05 05:10:44.664511 +[42] Log opened at 2024-06-05 05:10:44.664442 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] Log opened at 2024-06-05 05:10:44.669497 +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header '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. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: 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. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: 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. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:10:50.096517 + +[36] Log opened at 2024-06-05 05:10:50.114362 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:10:51.499551 + +[35] Log opened at 2024-06-05 05:10:51.511935 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:10:52.793152 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:10:52.954870 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:10:54.732714 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:10:56.346087 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:10:58.069068 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-06-05 05:10:58.570881 + +[33] Log opened at 2024-06-05 05:10:58.649053 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-06-05 05:10:58.682908 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:11:00.796022 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:11:02.343532 + +[40] Log opened at 2024-06-05 05:11:23.524852 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:36.221843 + +[42] Log opened at 2024-06-05 05:11:36.518509 +[40] Log opened at 2024-06-05 05:11:36.518620 +[31] Log opened at 2024-06-05 05:11:36.518668 +[30] Log opened at 2024-06-05 05:11:36.518703 +[43] Log opened at 2024-06-05 05:11:36.518545 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[35] Log opened at 2024-06-05 05:11:36.518841 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [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'. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [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'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [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'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] 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 header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [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. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [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] [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', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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] ERR: Could not connect to debugging 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', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:39.126947 + +[42] Log opened at 2024-06-05 05:11:39.143463 +[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', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:11:39.573055 + +[35] Log opened at 2024-06-05 05:11:39.586729 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:40.497429 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:11:40.758423 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:11:40.986199 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:42.555014 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:44.219721 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:44.704396 + +[35] Log opened at 2024-06-05 05:11:44.761414 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] Log opened at 2024-06-05 05:11:44.804760 +[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', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:11:46.818095 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:11:48.377673 + +[34] Log opened at 2024-06-05 05:11:56.571725 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:12:00.701162 + +[34] Log opened at 2024-06-05 05:12:02.018170 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:12:05.157009 + +[33] Log opened at 2024-06-05 05:12:16.674884 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:12:28.771019 + +[33] Log opened at 2024-06-05 05:12:29.124013 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-06-05 05:12:29.610298 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] Log opened at 2024-06-05 05:12:29.633239 +[44] Log opened at 2024-06-05 05:12:29.633371 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[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. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[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 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', poll success, but error: Operation now in progress (29). +[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] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[26] Log opened at 2024-06-05 05:12:29.699351 +[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. +[43] Log opened at 2024-06-05 05:12:29.707520 +[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'. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[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). +[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', poll success, but error: Operation now in progress (29). +[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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:12:30.734544 + +[33] Log opened at 2024-06-05 05:12:30.755129 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:12:32.675772 + +[43] Log opened at 2024-06-05 05:12:32.695176 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:12:34.381930 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:12:34.929071 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:12:36.536218 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:12:39.188109 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:12:39.701270 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:12:40.214603 + +[26] Log opened at 2024-06-05 05:12:40.269548 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-06-05 05:12:40.451196 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:12:43.236504 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:12:44.079260 + +[42] Log opened at 2024-06-05 05:12:52.548316 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:05.827948 + +[42] Log opened at 2024-06-05 05:13:06.328412 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 05:13:06.838669 +[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. +[33] Log opened at 2024-06-05 05:13:06.853163 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[43] Log opened at 2024-06-05 05:13:06.853888 +[45] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[40] Log opened at 2024-06-05 05:13:06.908876 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[34] Log opened at 2024-06-05 05:13:06.910237 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[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. +[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. +[40] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:08.038204 + +[42] Log opened at 2024-06-05 05:13:08.058584 +[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', poll success, but error: Operation now in progress (29). +[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). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:13:09.977591 + +[33] Log opened at 2024-06-05 05:13:09.996486 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:10.530224 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:11.140020 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:13.576200 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:14.070397 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:13:15.724548 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:13:16.253934 + +[34] Log opened at 2024-06-05 05:13:16.309659 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log opened at 2024-06-05 05:13:16.422865 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:13:18.448205 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:13:19.893897 + +[45] Log opened at 2024-06-05 05:13:21.872560 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:27.686835 + +[44] Log opened at 2024-06-05 05:13:31.014025 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:40.494411 + +[44] Log opened at 2024-06-05 05:13:40.832914 +[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', poll success, but error: Operation now in progress (29). +[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). +[26] Log opened at 2024-06-05 05:13:41.367467 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log opened at 2024-06-05 05:13:41.384235 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[30] Log opened at 2024-06-05 05:13:41.385352 +[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'. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[35] Log opened at 2024-06-05 05:13:41.433170 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[43] Log opened at 2024-06-05 05:13:41.436704 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[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. +[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. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] 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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:42.708949 + +[44] Log opened at 2024-06-05 05:13:42.729754 +[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', poll success, but error: Operation now in progress (29). +[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). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:13:45.036316 + +[30] Log opened at 2024-06-05 05:13:45.052158 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:13:46.384912 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:47.819289 + +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:13:49.367074 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:13:51.933501 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:13:52.414865 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:13:53.021786 + +[26] Log opened at 2024-06-05 05:13:53.075141 +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-06-05 05:13:53.269652 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:13:55.363732 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:13:56.857649 + +[42] Log opened at 2024-06-05 05:14:40.272636 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:14:48.631931 + +[42] Log opened at 2024-06-05 05:14:48.991106 +[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. +[34] Log opened at 2024-06-05 05:14:49.085816 +[33] Log opened at 2024-06-05 05:14:49.085494 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[46] Log opened at 2024-06-05 05:14:49.089755 +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] Log opened at 2024-06-05 05:14:49.089543 +[45] Log opened at 2024-06-05 05:14:49.089204 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[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). +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[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'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [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. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: 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 '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[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', poll success, but error: Operation now in progress (29). +[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). +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:14:50.328749 + +[42] Log opened at 2024-06-05 05:14:50.352388 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:14:52.472485 + +[46] Log opened at 2024-06-05 05:14:52.490067 +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:14:52.949578 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:14:55.216099 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:14:56.838816 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:14:57.541141 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:14:58.322437 + +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:14:58.809258 + +[46] Log opened at 2024-06-05 05:14:58.861695 +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log opened at 2024-06-05 05:14:58.960184 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:15:01.007523 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:15:02.573880 + +[44] Log opened at 2024-06-05 05:15:53.019074 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:16:00.399355 + +[44] Log opened at 2024-06-05 05:16:02.468832 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:16:12.706968 + +[44] Log opened at 2024-06-05 05:16:12.982496 +[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', poll success, but error: Operation now in progress (29). +[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). +[26] Log opened at 2024-06-05 05:16:12.996311 +[35] Log opened at 2024-06-05 05:16:12.996611 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[33] Log opened at 2024-06-05 05:16:12.996997 +[30] Log opened at 2024-06-05 05:16:12.996642 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[47] Log opened at 2024-06-05 05:16:12.997527 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[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'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [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 header 'REMOTE_ADDR'. +[30] [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. +[26] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:16:14.226634 + +[44] Log opened at 2024-06-05 05:16:14.246079 +[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', poll success, but error: Operation now in progress (29). +[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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:16:16.495921 + +[33] Log opened at 2024-06-05 05:16:16.514752 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:16:17.834843 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:16:19.241370 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:16:21.649821 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:16:23.353728 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:16:23.860098 + +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:16:24.333382 + +[33] Log opened at 2024-06-05 05:16:24.385267 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-06-05 05:16:24.510334 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-06-05 05:16:26.605940 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:16:28.152098 + +[46] Log opened at 2024-06-05 05:20:41.793064 +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:20:49.680968 + +[34] Log opened at 2024-06-05 05:36:51.805883 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:37:04.217610 + +[34] Log opened at 2024-06-05 05:37:04.675941 +[44] Log opened at 2024-06-05 05:37:04.676001 +[26] Log opened at 2024-06-05 05:37:04.676143 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[35] Log opened at 2024-06-05 05:37:04.676226 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[48] Log opened at 2024-06-05 05:37:04.676259 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[47] Log opened at 2024-06-05 05:37:04.678742 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[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. +[48] [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'. +[26] [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'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [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. +[26] [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. +[47] [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). +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [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). +[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] 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. +[26] [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. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:37:08.747070 + +[34] Log opened at 2024-06-05 05:37:08.762021 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:37:10.113276 + +[48] Log opened at 2024-06-05 05:37:10.124556 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:37:11.265630 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:37:11.439807 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:37:13.184458 + +[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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), 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', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-06-05 05:37:14.935957 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:37:16.630378 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:37:17.139872 + +[47] Log opened at 2024-06-05 05:37:17.202558 +[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', poll success, but error: Operation now in progress (29). +[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). +[35] Log opened at 2024-06-05 05:37:17.244329 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:37:19.343592 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:37:20.784210 + +[30] Log opened at 2024-06-05 05:37:38.776229 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:37:46.548500 + +[30] Log opened at 2024-06-05 05:37:48.249740 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:37:58.546700 + +[30] Log opened at 2024-06-05 05:37:58.826861 +[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. +[46] Log opened at 2024-06-05 05:37:58.835962 +[44] Log opened at 2024-06-05 05:37:58.836019 +[42] Log opened at 2024-06-05 05:37:58.836030 +[48] Log opened at 2024-06-05 05:37:58.836040 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[49] Log opened at 2024-06-05 05:37:58.836538 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [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). +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [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). +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [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 '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. +[44] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:37:59.914163 + +[30] Log opened at 2024-06-05 05:37:59.934037 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:02.200024 + +[44] Log opened at 2024-06-05 05:38:02.220501 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:02.671788 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:04.900696 + +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:38:06.542484 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:38:07.060281 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:08.729520 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:09.210610 + +[42] Log opened at 2024-06-05 05:38:09.278320 +[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', poll success, but error: Operation now in progress (29). +[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). +[44] Log opened at 2024-06-05 05:38:09.411833 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:11.422630 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:38:12.959878 + +[34] Log opened at 2024-06-05 05:38:43.985562 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:38:49.926388 + +[47] Log opened at 2024-06-05 05:39:02.845125 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:39:10.653661 + +[35] Log opened at 2024-06-05 05:39:11.534962 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:39:25.772958 + +[35] Log opened at 2024-06-05 05:39:26.217018 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log opened at 2024-06-05 05:39:26.759512 +[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. +[46] Log opened at 2024-06-05 05:39:26.773363 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[48] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[30] Log opened at 2024-06-05 05:39:26.775477 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[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. +[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'. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[46] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] Log opened at 2024-06-05 05:39:26.831265 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[50] Log opened at 2024-06-05 05:39:26.832675 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[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] [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. +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:39:27.929397 + +[35] Log opened at 2024-06-05 05:39:27.950132 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:39:30.052141 + +[30] Log opened at 2024-06-05 05:39:30.074606 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:39:30.514201 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:39:31.148266 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:39:31.574143 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:39:33.037125 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:39:35.616053 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:39:36.124241 + +[46] Log opened at 2024-06-05 05:39:36.183722 +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] Log opened at 2024-06-05 05:39:36.235762 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[46] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-06-05 05:39:38.308859 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:39:39.793648 + +[47] Log opened at 2024-06-05 05:42:20.204149 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:33.619678 + +[47] Log opened at 2024-06-05 05:42:34.042237 +[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', poll success, but error: Operation now in progress (29). +[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). +[50] Log opened at 2024-06-05 05:42:34.583130 +[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', poll success, but error: Operation now in progress (29). +[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). +[30] Log opened at 2024-06-05 05:42:34.600777 +[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'. +[35] Log opened at 2024-06-05 05:42:34.607671 +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[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. +[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'. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] Log opened at 2024-06-05 05:42:34.681118 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[49] Log opened at 2024-06-05 05:42:34.684645 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[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] 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] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[49] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:35.917265 + +[47] Log opened at 2024-06-05 05:42:35.936254 +[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', poll success, but error: Operation now in progress (29). +[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). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:42:39.268364 + +[30] Log opened at 2024-06-05 05:42:39.283296 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 05:42:40.614429 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:42.132522 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:43.785296 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:46.306781 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:46.815756 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-06-05 05:42:47.327804 + +[51] Log opened at 2024-06-05 05:42:47.394416 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 05:42:47.504991 +[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', poll success, but error: Operation now in progress (29). +[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] 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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:49.582642 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:42:51.135519 + +[48] Log opened at 2024-06-05 05:43:08.197501 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:43:16.508274 + +[44] Log opened at 2024-06-05 05:44:06.067487 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 05:44:13.538684 + +[34] Log opened at 2024-06-05 05:44:30.659079 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:44:38.923921 + +[34] Log opened at 2024-06-05 05:44:40.517467 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-06-05 05:44:45.457397 + +[52] Log opened at 2024-06-05 05:44:55.738523 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 05:45:03.158223 + +[52] Log opened at 2024-06-05 05:45:06.471845 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[52] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 05:45:10.831332 + +[35] Log opened at 2024-06-05 05:45:17.433596 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 12 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 13 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 17 -n "$plana" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 18 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 19 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 21 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 22 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 26 -n "$plana" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 27 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 28 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 30 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 31 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 32 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 33 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 34 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 35 -n "$plana" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 36 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 37 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 39 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 40 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 41 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 42 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 43 -n "$_FILES['file']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 44 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 45 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 46 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 47 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 48 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 49 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 50 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 51 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 53 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 54 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 55 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 56 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 58 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 59 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 60 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 62 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 63 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 64 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 65 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 66 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 68 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 69 -n "$data['isColor']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 70 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 72 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 05:46:13.992046 + +[49] Log opened at 2024-06-05 05:46:20.339179 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- stack_get -i 13 +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 18 -n "$data['isColor']" -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- context_names -i 19 -d 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 21 +[49] [Step Debug] -> + +[49] [Step Debug] <- stack_get -i 22 +[49] [Step Debug] -> + +[49] [Step Debug] <- stack_get -i 23 +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 25 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 27 -n "$_FILES" -c 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- property_get -i 28 -n "$data['isColor']" -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- context_names -i 29 -d 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 31 +[49] [Step Debug] -> + +[49] Log closed at 2024-06-05 05:46:33.107456 + +[49] Log opened at 2024-06-05 05:46:35.538181 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] -> + +[49] Log closed at 2024-06-05 05:46:44.462733 + +[30] Log opened at 2024-06-05 05:46:44.857507 +[51] Log opened at 2024-06-05 05:46:44.857462 +[47] Log opened at 2024-06-05 05:46:44.857661 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[49] Log opened at 2024-06-05 05:46:44.857855 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[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. +[30] [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'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [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). +[30] [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: 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: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] Log opened at 2024-06-05 05:46:44.883289 +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[49] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[48] Log opened at 2024-06-05 05:46:44.885896 +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[47] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] -> + +[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). +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] -> + +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[30] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[47] [Step Debug] -> + +[30] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[51] [Step Debug] -> + +[30] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[50] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] -> + +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[30] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[30] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[30] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[47] [Step Debug] -> + +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[30] [Step Debug] -> + +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[30] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[30] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[49] [Step Debug] -> + +[30] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 16 -n notify_ok -v 1 +[50] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 16 -n notify_ok -v 1 +[48] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 17 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 17 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] <- run -i 21 +[30] [Step Debug] <- run -i 21 +[51] [Step Debug] <- run -i 21 +[47] [Step Debug] <- run -i 21 +[48] [Step Debug] <- run -i 18 +[50] [Step Debug] <- run -i 18 +[49] [Step Debug] -> + +[49] Log closed at 2024-06-05 05:46:48.827054 + +[49] Log opened at 2024-06-05 05:46:48.844393 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 05:46:50.223592 + +[51] Log opened at 2024-06-05 05:46:50.236493 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 12 +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 05:46:51.479739 + +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:46:51.614268 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 05:46:53.344563 + +[47] [Step Debug] -> + +[47] Log closed at 2024-06-05 05:46:55.085317 + +[48] [Step Debug] -> + +[48] Log closed at 2024-06-05 05:46:56.763893 + +[49] [Step Debug] -> + +[49] Log closed at 2024-06-05 05:46:57.293861 + +[48] Log opened at 2024-06-05 05:46:57.474375 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[50] Log opened at 2024-06-05 05:46:57.613529 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 805 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[48] Log closed at 2024-06-05 05:46:59.702555 + +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 13 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 18 -n "$data['isColor']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 19 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_remove -i 21 -d 500008 +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 22 +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 05:47:06.197831 + +[34] Log opened at 2024-06-05 05:47:30.037143 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 05:47:42.737663 + +[34] Log opened at 2024-06-05 05:47:43.095888 +[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. +[30] Log opened at 2024-06-05 05:47:43.104350 +[51] Log opened at 2024-06-05 05:47:43.104451 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[52] Log opened at 2024-06-05 05:47:43.104505 +[53] Log opened at 2024-06-05 05:47:43.105312 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[35] Log opened at 2024-06-05 05:47:43.105372 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Checking 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] -> + +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [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. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] -> + +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] -> + +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [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. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [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. +[35] [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. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] -> + +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[30] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[52] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[30] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] -> + +[30] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[51] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[53] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[52] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[53] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[52] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[30] [Step Debug] <- run -i 11 +[51] [Step Debug] <- run -i 11 +[52] [Step Debug] <- run -i 11 +[35] [Step Debug] <- run -i 11 +[53] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 05:47:44.443098 + +[34] Log opened at 2024-06-05 05:47:44.464355 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:47:46.841144 + +[30] Log opened at 2024-06-05 05:47:46.862069 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 11 +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 05:47:47.351415 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 05:47:47.996826 + +[52] [Step Debug] -> + +[52] Log closed at 2024-06-05 05:47:50.441690 + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 05:47:52.394161 + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 05:47:52.907370 + +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:47:53.425424 + +[30] Log opened at 2024-06-05 05:47:53.510659 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 11 +[52] Log opened at 2024-06-05 05:47:53.618442 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[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. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 11 +[52] [Step Debug] -> + +[52] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:47:55.770188 + +[52] [Step Debug] -> + +[52] Log closed at 2024-06-05 05:47:57.221123 + +[30] Log opened at 2024-06-05 05:48:00.000563 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 11 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 12 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 17 -n "$data['isColor']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 18 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[30] [Step Debug] -> + +[54] Log opened at 2024-06-05 05:49:01.098622 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[54] [Step Debug] <- run -i 11 +[30] [Step Debug] <- stop -i 20 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:49:05.117363 + +[54] [Step Debug] -> + +[54] [Step Debug] -> + +[54] [Step Debug] -> + +[54] [Step Debug] <- stop -i 12 +[54] [Step Debug] -> + +[54] Log closed at 2024-06-05 05:49:13.885452 + +[53] Log opened at 2024-06-05 05:49:14.264988 +[51] Log opened at 2024-06-05 05:49:14.265229 +[34] Log opened at 2024-06-05 05:49:14.265250 +[54] Log opened at 2024-06-05 05:49:14.265283 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[35] Log opened at 2024-06-05 05:49:14.265783 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[53] [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'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] Log opened at 2024-06-05 05:49:14.270036 +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [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). +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [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. +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [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 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. +[35] [Step Debug] INFO: Connected to debugging client: 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] -> + +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[52] [Step Debug] -> + +[54] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[34] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[34] [Step Debug] -> + +[35] [Step Debug] -> + +[52] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[52] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] -> + +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[35] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[52] [Step Debug] -> + +[35] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[54] [Step Debug] -> + +[34] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[54] [Step Debug] -> + +[34] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[52] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[52] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] -> + +[54] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[52] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[52] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[54] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[52] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[35] [Step Debug] <- run -i 15 +[53] [Step Debug] <- run -i 15 +[54] [Step Debug] <- run -i 15 +[51] [Step Debug] <- run -i 21 +[34] [Step Debug] <- run -i 15 +[52] [Step Debug] <- run -i 15 +[52] [Step Debug] -> + +[52] Log closed at 2024-06-05 05:49:25.092085 + +[52] Log opened at 2024-06-05 05:49:25.109566 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[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. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 5 +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 05:49:25.538827 + +[34] Log opened at 2024-06-05 05:49:25.552195 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[54] Log closed at 2024-06-05 05:49:26.009020 + +[34] [Step Debug] <- run -i 5 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 05:49:27.173960 + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 05:49:27.460898 + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 05:49:27.597841 + +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 05:49:30.201022 + +[52] [Step Debug] -> + +[52] Log closed at 2024-06-05 05:49:30.693603 + +[34] Log opened at 2024-06-05 05:49:30.753930 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[51] Log opened at 2024-06-05 05:49:30.870139 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[51] [Step Debug] <- run -i 11 +[51] [Step Debug] -> + +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 05:49:45.057905 + +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 05:49:45.919689 + +[47] Log opened at 2024-06-05 05:51:51.463068 +[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] INFO: Connected to debugging client: 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] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 11 +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 12 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 17 -n "$data['isColor']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 18 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 20 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 21 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 22 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 24 -n "$_FILES" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 25 -n "$_POST" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 27 -n "$_POST[\"file\"]" -p 0 -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 28 -n "$_FILES" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 29 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 30 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 31 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 32 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 33 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 34 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 35 -n "$_FILES" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 36 -n "$_POST" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 37 -n "$_POST[\"file\"]" -p 0 -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 38 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 40 +[47] [Step Debug] -> + +[47] Log closed at 2024-06-05 05:52:56.098020 + +[48] Log opened at 2024-06-05 05:54:16.063838 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 12 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 13 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 18 -n "$_POST" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 19 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 21 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 22 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 23 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 25 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 27 -n "$_FILES" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 28 -n "$_POST" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 29 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 31 +[48] [Step Debug] -> + +[48] Log closed at 2024-06-05 05:55:55.363142 + +[48] Log opened at 2024-06-05 05:55:59.660111 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] Log closed at 2024-06-05 05:56:09.259216 + +[50] Log opened at 2024-06-05 05:56:09.634658 +[53] Log opened at 2024-06-05 05:56:09.634565 +[35] Log opened at 2024-06-05 05:56:09.634824 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[48] Log opened at 2024-06-05 05:56:09.634875 +[30] Log opened at 2024-06-05 05:56:09.634616 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[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'. +[54] Log opened at 2024-06-05 05:56:09.642047 +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [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. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [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). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: 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. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[35] [Step Debug] -> + +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[30] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[48] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[35] [Step Debug] -> + +[54] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] -> + +[48] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[30] [Step Debug] -> + +[54] [Step Debug] -> + +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[48] [Step Debug] -> + +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[50] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[48] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[50] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[30] [Step Debug] -> + +[53] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[54] [Step Debug] -> + +[35] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[54] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[54] [Step Debug] -> + +[30] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[30] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[48] [Step Debug] -> + +[30] [Step Debug] -> + +[54] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[54] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[50] [Step Debug] -> + +[35] [Step Debug] -> + +[48] [Step Debug] <- run -i 21 +[50] [Step Debug] <- run -i 21 +[35] [Step Debug] <- run -i 21 +[30] [Step Debug] <- run -i 21 +[53] [Step Debug] <- run -i 21 +[54] [Step Debug] <- run -i 21 +[48] [Step Debug] -> + +[48] Log closed at 2024-06-05 05:56:13.928543 + +[48] Log opened at 2024-06-05 05:56:13.944754 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 11 +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 05:56:15.372638 + +[53] Log opened at 2024-06-05 05:56:15.386082 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 11 +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 05:56:16.640610 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 05:56:16.767087 + +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:56:18.565476 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 05:56:20.245021 + +[54] [Step Debug] -> + +[54] Log closed at 2024-06-05 05:56:22.250577 + +[48] [Step Debug] -> + +[48] Log closed at 2024-06-05 05:56:23.325386 + +[35] Log opened at 2024-06-05 05:56:23.410708 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 11 +[30] Log opened at 2024-06-05 05:56:23.547648 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 841 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 11 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 05:56:25.708321 + +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 05:56:27.178324 + +[34] Log opened at 2024-06-05 06:07:49.307500 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:08:01.061675 + +[51] Log opened at 2024-06-05 06:08:01.557264 +[50] Log opened at 2024-06-05 06:08:01.557437 +[55] Log opened at 2024-06-05 06:08:01.557228 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[47] Log opened at 2024-06-05 06:08:01.557193 +[34] Log opened at 2024-06-05 06:08:01.558143 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[53] Log opened at 2024-06-05 06:08:01.561587 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [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'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [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). +[55] [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. +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [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. +[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. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 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] -> + +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[34] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[47] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[55] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[55] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[55] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[34] [Step Debug] -> + +[55] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[55] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] -> + +[47] [Step Debug] -> + +[34] [Step Debug] -> + +[55] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[34] [Step Debug] -> + +[47] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[55] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[34] [Step Debug] <- run -i 21 +[51] [Step Debug] <- run -i 21 +[50] [Step Debug] <- run -i 21 +[55] [Step Debug] <- run -i 21 +[47] [Step Debug] <- run -i 21 +[53] [Step Debug] <- run -i 21 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- stack_get -i 22 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 26 -n "$_FILES" -c 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 27 -n "$_POST" -c 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_names -i 28 -d 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 30 +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:08:10.095481 + +[54] Log opened at 2024-06-05 06:08:10.118118 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[54] [Step Debug] <- run -i 11 +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 06:08:11.579194 + +[51] Log opened at 2024-06-05 06:08:11.597439 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:08:12.940304 + +[55] Log opened at 2024-06-05 06:08:12.955526 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:08:14.342100 + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:08:14.388929 + +[47] [Step Debug] -> + +[47] Log closed at 2024-06-05 06:08:17.071783 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:08:18.805532 + +[54] [Step Debug] -> + +[54] Log closed at 2024-06-05 06:08:20.663568 + +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 06:08:21.175647 + +[50] Log opened at 2024-06-05 06:08:21.259288 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[47] Log opened at 2024-06-05 06:08:21.379589 +[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] INFO: Connected to debugging client: 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] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 11 +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:08:23.601955 + +[47] [Step Debug] -> + +[47] Log closed at 2024-06-05 06:08:25.178719 + +[30] Log opened at 2024-06-05 06:08:52.668754 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 11 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 12 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 17 -n "$_POST" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 18 -c 1 -n "$_POST[\"oldFiles\"]" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 19 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 21 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 22 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 26 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 27 -n "$_POST" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 28 -c 1 -n "$_POST[\"oldFiles\"]" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 29 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 31 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 32 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 33 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 34 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 36 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 37 -n "$_POST" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 38 -c 1 -n "$_POST[\"oldFiles\"]" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 39 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 41 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 42 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 43 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 44 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 45 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 47 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 48 -n "$_POST" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 49 -c 1 -n "$_POST[\"oldFiles\"]" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 50 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 51 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 52 -d 0 -c 0 -n "$old_files" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 53 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 54 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 55 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 56 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 58 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 59 -n "$_POST" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 60 -c 1 -n "$_POST[\"oldFiles\"]" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 61 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 62 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 63 -d 0 -c 0 -n "$old_files" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- step_over -i 64 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 65 +[30] [Step Debug] -> + +[30] [Step Debug] <- stack_get -i 66 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 67 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 68 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- eval -i 69 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 70 -n "$_FILES" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_get -i 71 -n "$_POST" -c 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- property_value -i 72 -c 1 -n "$_POST[\"oldFiles\"]" -m 77 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_names -i 73 -d 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 75 +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 06:09:16.203196 + +[56] Log opened at 2024-06-05 06:12:36.828044 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 11 +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:12:49.670567 + +[34] Log opened at 2024-06-05 06:12:50.057288 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[56] Log opened at 2024-06-05 06:12:50.065355 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[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. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] Log opened at 2024-06-05 06:12:50.088415 +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] Log opened at 2024-06-05 06:12:50.088456 +[56] [Step Debug] -> + +[54] Log opened at 2024-06-05 06:12:50.088489 +[51] Log opened at 2024-06-05 06:12:50.088546 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[34] [Step Debug] -> + +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[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'. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [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). +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [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). +[53] [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. +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[51] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[55] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[34] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[34] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[34] [Step Debug] -> + +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[54] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[54] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[54] [Step Debug] -> + +[53] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] -> + +[34] [Step Debug] <- run -i 14 +[56] [Step Debug] <- run -i 13 +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] -> + +[55] [Step Debug] -> + +[54] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[55] [Step Debug] <- run -i 15 +[54] [Step Debug] <- run -i 15 +[53] [Step Debug] -> + +[51] [Step Debug] <- run -i 15 +[53] [Step Debug] <- run -i 15 +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:12:51.684679 + +[34] Log opened at 2024-06-05 06:12:51.711489 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 14 +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 15 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 16 +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 17 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:12:58.085628 + +[50] Log opened at 2024-06-05 06:12:58.108431 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:12:59.126045 + +[55] Log opened at 2024-06-05 06:12:59.155590 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 11 +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:12:59.888807 + +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 06:13:00.524731 + +[54] [Step Debug] -> + +[54] Log closed at 2024-06-05 06:13:01.951281 + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:13:03.644119 + +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:13:04.165899 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:13:05.845272 + +[34] Log opened at 2024-06-05 06:13:05.937320 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[55] Log opened at 2024-06-05 06:13:06.056593 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:13:08.284646 + +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:13:09.819432 + +[35] Log opened at 2024-06-05 06:15:31.511491 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 11 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:15:44.370248 + +[30] Log opened at 2024-06-05 06:15:44.777829 +[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'. +[35] Log opened at 2024-06-05 06:15:44.784624 +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[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. +[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] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[53] Log opened at 2024-06-05 06:15:44.820801 +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] Log opened at 2024-06-05 06:15:44.821325 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[56] Log opened at 2024-06-05 06:15:44.820840 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[57] Log opened at 2024-06-05 06:15:44.821939 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [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'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] -> + +[53] [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. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [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). +[35] [Step Debug] -> + +[53] [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: 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. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[57] [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] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[57] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[56] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[35] [Step Debug] -> + +[53] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[30] [Step Debug] -> + +[35] [Step Debug] <- run -i 13 +[30] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- run -i 5 +[56] [Step Debug] <- run -i 5 +[51] [Step Debug] <- run -i 5 +[57] [Step Debug] <- run -i 5 +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 13 +[30] [Step Debug] -> + +[30] Log closed at 2024-06-05 06:15:46.410137 + +[30] Log opened at 2024-06-05 06:15:46.430028 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 14 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 15 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 16 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:15:53.468992 + +[54] Log opened at 2024-06-05 06:15:53.490340 +[54] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.54' +[54] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[54] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[54] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[54] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[54] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[54] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[54] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[54] [Step Debug] -> + +[54] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] Log closed at 2024-06-05 06:15:55.590158 + +[51] Log opened at 2024-06-05 06:15:55.611474 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:15:58.404917 + +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:16:00.449402 + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:16:02.449601 + +[30] [Step Debug] <- stop -i 11 +[54] [Step Debug] <- stop -i 11 +[51] [Step Debug] <- stop -i 11 +[30] [Step Debug] -> + +[54] [Step Debug] -> + +[51] [Step Debug] -> + +[50] Log opened at 2024-06-05 06:16:26.425595 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[34] Log opened at 2024-06-05 06:16:26.429387 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[50] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] Log opened at 2024-06-05 06:16:26.455634 +[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. +[55] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:16:30.601049 + +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:16:32.350478 + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:16:34.138741 + +[34] Log opened at 2024-06-05 06:16:34.216749 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[50] Log opened at 2024-06-05 06:16:34.350973 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:16:36.588094 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:16:38.088322 + +[58] Log opened at 2024-06-05 06:17:02.430908 +[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] INFO: Connected to debugging client: 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] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 11 +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 12 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 13 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 14 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 15 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 16 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 17 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 18 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 19 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 20 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 22 -n "$_FILES" -c 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 23 -n "$_POST" -c 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 24 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 26 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 27 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 28 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 29 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 31 -n "$_FILES" -c 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 32 -n "$_POST" -c 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 33 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 35 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 36 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 37 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 38 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 39 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- eval -i 40 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 41 -n "$_FILES" -c 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 42 -n "$_POST" -c 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 43 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- stop -i 45 +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] Log closed at 2024-06-05 06:17:32.648351 + +[35] Log opened at 2024-06-05 06:17:53.875256 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 11 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[57] Log opened at 2024-06-05 06:18:04.692618 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 11 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:18:06.842702 + +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:18:16.738719 + +[56] Log opened at 2024-06-05 06:18:17.073762 +[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. +[57] Log opened at 2024-06-05 06:18:17.085439 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[55] Log opened at 2024-06-05 06:18:17.086818 +[50] Log opened at 2024-06-05 06:18:17.086763 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[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'. +[53] Log opened at 2024-06-05 06:18:17.088977 +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[34] Log opened at 2024-06-05 06:18:17.089983 +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] -> + +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [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 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [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). +[50] [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. +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [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] -> + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] -> + +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [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. +[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. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] -> + +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[56] [Step Debug] -> + +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[34] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[50] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[57] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[57] [Step Debug] -> + +[34] [Step Debug] -> + +[50] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[50] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[57] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[57] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[34] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[57] [Step Debug] -> + +[56] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[34] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] -> + +[34] [Step Debug] -> + +[56] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[56] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[50] [Step Debug] -> + +[34] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[34] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[56] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[57] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[56] [Step Debug] -> + +[57] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[56] [Step Debug] -> + +[34] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[34] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[34] [Step Debug] -> + +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[34] [Step Debug] -> + +[53] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 17 +[57] [Step Debug] <- run -i 17 +[55] [Step Debug] <- run -i 17 +[50] [Step Debug] <- run -i 17 +[34] [Step Debug] <- run -i 17 +[53] [Step Debug] <- run -i 17 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:18:18.773254 + +[56] Log opened at 2024-06-05 06:18:18.799790 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 11 +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:18:20.894079 + +[57] Log opened at 2024-06-05 06:18:20.917498 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:18:21.392474 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:18:21.866017 + +[34] [Step Debug] -> + +[34] Log closed at 2024-06-05 06:18:23.201789 + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:18:24.847476 + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:18:26.624608 + +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:18:27.143598 + +[56] Log opened at 2024-06-05 06:18:27.219546 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 11 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:18:30.094840 + +[35] Log opened at 2024-06-05 06:18:46.655802 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 11 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:18:54.530960 + +[35] Log opened at 2024-06-05 06:18:54.793419 +[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. +[55] Log opened at 2024-06-05 06:18:54.803075 +[50] Log opened at 2024-06-05 06:18:54.803692 +[59] Log opened at 2024-06-05 06:18:54.803583 +[61] Log opened at 2024-06-05 06:18:54.803547 +[60] Log opened at 2024-06-05 06:18:54.803523 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[35] [Step Debug] INFO: Connected to debugging client: 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] -> + +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] -> + +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] -> + +[50] [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. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [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). +[60] [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). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] WARN: 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. +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[59] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[61] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[35] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[59] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[55] [Step Debug] -> + +[61] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[55] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[50] [Step Debug] -> + +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[50] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[59] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[61] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[50] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[35] [Step Debug] <- run -i 11 +[61] [Step Debug] <- run -i 11 +[50] [Step Debug] <- run -i 11 +[59] [Step Debug] <- run -i 11 +[55] [Step Debug] <- run -i 11 +[60] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. 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] -> + +[35] Log closed at 2024-06-05 06:18:56.392074 + +[35] Log opened at 2024-06-05 06:18:56.422845 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:18:59.586133 + +[55] Log opened at 2024-06-05 06:18:59.601150 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 11 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:19:01.684591 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:19:03.570848 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:19:05.280025 + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 11 +[60] [Step Debug] -> + +[60] Log closed at 2024-06-05 06:19:07.055688 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:19:07.575674 + +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:19:08.069075 + +[50] Log opened at 2024-06-05 06:19:08.138210 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[55] Log opened at 2024-06-05 06:19:08.253056 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 11 +[55] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:19:10.403976 + +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:19:11.890743 + +[53] Log opened at 2024-06-05 06:19:25.029006 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 11 +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 12 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 13 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 18 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 19 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 20 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 22 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 23 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 25 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 27 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 28 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 29 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 30 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 32 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 33 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 34 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 35 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 37 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 38 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 39 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 40 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 42 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 43 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 44 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 45 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 47 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 48 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 49 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 50 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 51 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 52 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 53 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 54 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 55 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 56 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 57 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 59 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 60 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 61 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 62 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 64 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 65 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 66 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 67 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 68 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 69 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 70 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 71 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 72 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 73 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 75 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_into -i 76 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 77 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 78 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 79 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 80 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 81 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 82 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 83 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 84 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 85 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 86 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 87 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 88 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 89 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 90 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 91 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 93 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 94 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 95 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 96 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 97 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 98 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 99 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 101 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 102 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 103 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 104 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 105 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 106 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 107 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 108 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 109 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 110 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 111 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 112 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 113 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 114 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 115 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 116 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 117 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 118 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 119 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 120 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 121 -d 0 -c 0 -n "$old_files" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- step_over -i 122 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 123 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 124 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 125 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMTE4NWNlODcwY2JkYjVlYzBkZTA3NDAxODZjY2I1OGUwYmI5YzA1MTVlMWVlZWY0NmEyZDBjZTQ1MWE3ZDViMSddPSRvbGRfZmlsZXM= +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 127 -n "$DEVSENSE_EVAL_CACHE['1185ce870cbdb5ec0de0740186ccb58e0bb9c0515e1eeef46a2d0ce451a7d5b1']" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMTE4NWNlODcwY2JkYjVlYzBkZTA3NDAxODZjY2I1OGUwYmI5YzA1MTVlMWVlZWY0NmEyZDBjZTQ1MWE3ZDViMSddPSRvbGRfZmlsZXM= +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 129 -n "$DEVSENSE_EVAL_CACHE['1185ce870cbdb5ec0de0740186ccb58e0bb9c0515e1eeef46a2d0ce451a7d5b1']" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- stop -i 130 +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] -> deleteFiles('117', '["2024-02-05 09...') +#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Presupuestos\Presupuestocliente->upload_files() +#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Presupuestos\Presupuestocliente)) +#4 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false) +#5 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(312): CodeIgniter\CodeIgniter->run() +#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter)) +#7 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths)) +#8 {main} + thrown]]> + +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:20:11.366398 + +[57] Log opened at 2024-06-05 06:20:46.722078 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 11 +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:20:58.654365 + +[57] Log opened at 2024-06-05 06:20:58.951066 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[60] Log opened at 2024-06-05 06:20:58.971504 +[59] Log opened at 2024-06-05 06:20:58.971682 +[61] Log opened at 2024-06-05 06:20:58.972572 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[62] Log opened at 2024-06-05 06:20:58.972246 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] Log opened at 2024-06-05 06:20:58.971802 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[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). +[62] [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). +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[61] [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 '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). +[62] [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. +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[61] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[62] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[57] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[59] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[61] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[60] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[60] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[35] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] <- run -i 11 +[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[62] [Step Debug] <- run -i 17 +[59] [Step Debug] <- run -i 17 +[61] [Step Debug] <- run -i 17 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 17 +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:21:00.494350 + +[57] Log opened at 2024-06-05 06:21:00.514213 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 11 +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:21:04.390836 + +[62] Log opened at 2024-06-05 06:21:04.411729 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 11 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:21:05.728722 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:21:07.200114 + +[60] [Step Debug] -> + +[60] Log closed at 2024-06-05 06:21:08.886660 + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:21:10.581264 + +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:21:11.152950 + +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:21:11.693434 + +[60] Log opened at 2024-06-05 06:21:11.764166 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 11 +[62] Log opened at 2024-06-05 06:21:11.878713 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 11 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[60] Log closed at 2024-06-05 06:21:14.105630 + +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:21:15.585430 + +[50] Log opened at 2024-06-05 06:21:21.011760 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 12 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 17 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 18 -c 1 -n "$_POST[\"oldFiles\"]" -m 60 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 19 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 22 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 23 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 25 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 27 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 28 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 29 -c 1 -n "$_POST[\"oldFiles\"]" -m 60 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 30 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 32 -d 0 -c 0 -n "$old_files" -m 60 +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 33 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 34 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 35 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 36 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 38 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 39 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 40 -c 1 -n "$_POST[\"oldFiles\"]" -m 60 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 41 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 43 -d 0 -c 0 -n "$old_files" -m 60 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 44 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 45 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 46 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[50] [Step Debug] -> + +[55] Log opened at 2024-06-05 06:22:44.778537 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 12 +[55] [Step Debug] -> + +[55] [Step Debug] -> + +[50] [Step Debug] <- stop -i 48 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] -> deleteFiles('117', '2024-02-05 09_2...') +#2 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(933): App\Controllers\Presupuestos\Presupuestocliente->upload_files() +#3 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(509): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Presupuestos\Presupuestocliente)) +#4 /var/www/html/ci4/vendor/codeigniter4/framework/system/CodeIgniter.php(355): CodeIgniter\CodeIgniter->handleRequest(NULL, Object(Config\Cache), false) +#5 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(312): CodeIgniter\CodeIgniter->run() +#6 /var/www/html/ci4/vendor/codeigniter4/framework/system/Boot.php(67): CodeIgniter\Boot::runCodeIgniter(Object(CodeIgniter\CodeIgniter)) +#7 /var/www/html/httpdocs/index.php(56): CodeIgniter\Boot::bootWeb(Object(Config\Paths)) +#8 {main} + thrown]]> + +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:23:02.365815 + +[55] [Step Debug] -> + +[55] [Step Debug] <- stop -i 13 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:23:09.273967 + +[55] Log opened at 2024-06-05 06:23:09.596881 +[59] Log opened at 2024-06-05 06:23:09.596934 +[56] Log opened at 2024-06-05 06:23:09.596844 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[61] Log opened at 2024-06-05 06:23:09.598431 +[63] Log opened at 2024-06-05 06:23:09.598497 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[35] Log opened at 2024-06-05 06:23:09.601151 +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [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'. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [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). +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [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 '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [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'. +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [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 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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[55] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[63] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[63] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[56] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[63] [Step Debug] -> + +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[63] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] -> + +[63] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[63] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[63] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[56] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[63] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[35] [Step Debug] -> + +[63] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[63] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] -> + +[55] [Step Debug] -> + +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[56] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[63] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[63] [Step Debug] -> + +[55] [Step Debug] -> + +[59] [Step Debug] -> + +[35] [Step Debug] -> + +[56] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[59] [Step Debug] -> + +[55] [Step Debug] <- run -i 20 +[61] [Step Debug] <- run -i 20 +[56] [Step Debug] <- run -i 20 +[59] [Step Debug] <- run -i 22 +[63] [Step Debug] <- run -i 20 +[35] [Step Debug] <- run -i 20 +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:23:13.768312 + +[55] Log opened at 2024-06-05 06:23:13.784371 +[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. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 12 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:23:15.153531 + +[56] Log opened at 2024-06-05 06:23:15.167348 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 12 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:23:16.549766 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:23:16.659637 + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:23:18.502248 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:23:20.263952 + +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:23:21.991045 + +[55] [Step Debug] -> + +[55] Log closed at 2024-06-05 06:23:22.601080 + +[59] Log opened at 2024-06-05 06:23:22.720355 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 12 +[63] Log opened at 2024-06-05 06:23:22.906525 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 12 +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:23:25.142354 + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:23:26.727059 + +[57] Log opened at 2024-06-05 06:23:32.126444 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 12 +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 13 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 18 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 19 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 20 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 22 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 23 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 25 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 27 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 28 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 29 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 30 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 32 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 33 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 34 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 35 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 37 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 38 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 39 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 40 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 42 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 43 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 44 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 45 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 47 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 48 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 49 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 50 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 51 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 52 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 53 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 54 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 55 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 56 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 57 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 58 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 59 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 60 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 62 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 63 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 64 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 65 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 66 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 67 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 68 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 69 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 70 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 72 +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:23:47.868119 + +[62] Log opened at 2024-06-05 06:23:51.635506 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:24:05.229133 + +[62] Log opened at 2024-06-05 06:24:05.530198 +[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. +[56] Log opened at 2024-06-05 06:24:05.538517 +[61] Log opened at 2024-06-05 06:24:05.538902 +[50] Log opened at 2024-06-05 06:24:05.538472 +[53] Log opened at 2024-06-05 06:24:05.538568 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[35] Log opened at 2024-06-05 06:24:05.540580 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [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. +[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'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] -> + +[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] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [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). +[62] [Step Debug] -> + +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[56] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[61] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[53] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[56] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] -> + +[35] [Step Debug] -> + +[62] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[53] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[50] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[50] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[56] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[53] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[53] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[50] [Step Debug] <- feature_set -i 8 -n max_children -v 100 +[53] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[56] [Step Debug] <- run -i 12 +[35] [Step Debug] <- run -i 12 +[61] [Step Debug] <- run -i 12 +[53] [Step Debug] <- run -i 12 +[50] [Step Debug] <- run -i 12 +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:24:06.816519 + +[62] Log opened at 2024-06-05 06:24:06.837810 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:24:08.782407 + +[35] Log opened at 2024-06-05 06:24:08.804152 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 12 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:24:09.294252 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:24:09.747753 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:24:12.072824 + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:24:14.127416 + +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:24:14.762638 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:24:15.384143 + +[50] Log opened at 2024-06-05 06:24:15.484275 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[35] Log opened at 2024-06-05 06:24:15.614786 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 842 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 12 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:24:17.949156 + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:24:19.597364 + +[59] Log opened at 2024-06-05 06:24:46.653635 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 836 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoFicheroModel.php -n 54 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 12 +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 13 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 15 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 17 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 18 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 19 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 20 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 22 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 23 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 24 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 25 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 26 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 28 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 29 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 30 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 31 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 33 -d 590027 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 34 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 35 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 36 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 37 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 39 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 40 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 41 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 42 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 44 -n "$files[\"name\"]" -p 0 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 45 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 46 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 47 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 48 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 49 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 51 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 52 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 53 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 54 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 56 -d 590029 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 57 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 58 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 59 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 60 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 62 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 63 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 64 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 65 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 66 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 67 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 68 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 69 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 70 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 72 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 73 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 74 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 75 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 76 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 77 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 78 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 79 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 80 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 81 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 82 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 83 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 84 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 85 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 86 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 87 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 88 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 89 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 90 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 91 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 93 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 94 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 95 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 96 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 97 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- step_over -i 98 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 99 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 101 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 102 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 103 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 104 -n "$_FILES" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 105 -n "$_POST" -c 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_value -i 106 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 107 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 108 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 109 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:25:30.977557 + +[63] Log opened at 2024-06-05 06:25:32.449547 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 10 +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- stack_get -i 11 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 12 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 15 -n "$_FILES" -c 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 16 -n "$_POST" -c 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_value -i 17 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[63] [Step Debug] -> + +[63] [Step Debug] <- context_names -i 18 -d 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 20 -n "$_FILES[\"file\"]" -p 0 -c 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 21 +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:26:22.259662 + +[57] Log opened at 2024-06-05 06:26:24.354236 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[57] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 10 +[57] [Step Debug] -> + +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 11 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 12 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 15 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 16 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 17 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 18 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 20 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 21 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 22 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 25 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 26 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 27 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 28 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 29 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 30 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 31 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 33 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 34 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 35 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 36 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 38 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 39 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 40 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 41 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 42 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 43 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 44 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 45 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 46 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 47 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 49 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 50 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 51 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 52 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 53 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 54 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 55 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 56 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 57 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 58 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 59 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- step_over -i 60 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 61 +[57] [Step Debug] -> + +[57] [Step Debug] <- stack_get -i 62 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 63 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 64 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 66 -n "$_FILES" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_get -i 67 -n "$_POST" -c 1 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_names -i 68 -d 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- property_value -i 69 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[57] [Step Debug] -> + +[57] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[57] [Step Debug] -> + +[57] [Step Debug] <- run -i 71 +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:26:41.868379 + +[64] Log opened at 2024-06-05 06:26:48.302960 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 10 +[64] [Step Debug] -> + +[64] [Step Debug] -> + +[64] [Step Debug] <- stack_get -i 11 +[64] [Step Debug] -> + +[64] [Step Debug] <- stack_get -i 12 +[64] [Step Debug] -> + +[64] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[64] [Step Debug] -> + +[64] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[64] [Step Debug] -> + +[64] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[64] [Step Debug] -> + +[64] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- property_get -i 17 -n "$_POST" -c 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- property_value -i 18 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[64] [Step Debug] -> + +[64] [Step Debug] <- context_names -i 19 -d 0 +[64] [Step Debug] -> + +[64] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 21 +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:27:02.763466 + +[56] Log opened at 2024-06-05 06:27:04.058099 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 10 +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 11 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 12 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 15 -n "$_FILES" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 16 -n "$_POST" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_value -i 17 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_names -i 18 -d 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 20 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 21 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 22 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 25 -n "$_FILES" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 26 -n "$_POST" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_value -i 27 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_names -i 28 -d 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 30 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 31 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 32 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 33 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- eval -i 34 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 35 -n "$_FILES" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 36 -n "$_POST" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_value -i 37 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_names -i 38 -d 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 40 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 41 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 42 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 43 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 45 -n "$_FILES" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 46 -n "$_POST" -c 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_value -i 47 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_names -i 48 -d 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 50 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:27:17.347483 + +[61] Log opened at 2024-06-05 06:27:29.224356 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 10 +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 11 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 12 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 17 -n "$_POST" -c 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_value -i 18 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 19 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 21 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:27:54.107373 + +[53] Log opened at 2024-06-05 06:27:55.453841 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 10 +[53] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 11 +[53] [Step Debug] -> + +[53] [Step Debug] <- stack_get -i 12 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 14 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 16 -n "$_FILES" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_get -i 17 -n "$_POST" -c 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- property_value -i 18 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_names -i 19 -d 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 21 +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:28:11.776327 + +[62] Log opened at 2024-06-05 06:28:24.263986 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 10 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 11 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 12 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 15 -n "$_FILES" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 16 -n "$_POST" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_value -i 17 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 18 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 20 -n "$_FILES[\"file\"]" -p 0 -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 21 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 22 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 26 -n "$_FILES" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 27 -n "$_POST" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_value -i 28 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 29 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 31 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 32 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 33 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 34 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 36 -n "$_FILES" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 37 -n "$_POST" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_value -i 38 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 39 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 41 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 42 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 43 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 44 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 46 -n "$_FILES" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 47 -n "$_POST" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_value -i 48 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 49 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 51 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 52 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 53 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 54 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 56 -n "$_FILES" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 57 -n "$_POST" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_value -i 58 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 59 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 61 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 62 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 63 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 64 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 66 -n "$_FILES" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 67 -n "$_POST" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_value -i 68 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 69 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 71 +[62] [Step Debug] -> + +[62] Log closed at 2024-06-05 06:29:02.412802 + +[50] Log opened at 2024-06-05 06:29:06.999753 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 10 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 11 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 12 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 13 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 15 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 16 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 17 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 18 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 20 -n "$_FILES[\"file\"]" -p 0 -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 21 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 22 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 23 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 24 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 26 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 27 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 28 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 29 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 31 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 32 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 33 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 34 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 36 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 37 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 38 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 39 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 41 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 42 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 43 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 44 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 46 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 47 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 48 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 49 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 51 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 52 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 53 -n "$linea['fields']['precio_click_pedido']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 54 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 56 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 57 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 58 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 59 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 61 -n "$_FILES[\"file\"]" -p 0 -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 62 -n "$linea['fields']['precio_click']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 63 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 64 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 65 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 66 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMmU0YTQ4MzYwYjkwZDg2ZDQ4NTQwYjQ0NzBkYzEwYzAyY2U2OTMxNjk4NjU1OTY5ZDM3OTkwYmRjNDE3YTAyYSddPSgkZGF0b3NQZWRpZG8tPnBhZ2luYXMgLyAyLjAp +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 68 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 69 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 70 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 71 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 72 -n "$_POST" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_value -i 73 -c 1 -n "$_POST[\"oldFiles\"]" -m 64 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 74 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 75 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 76 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- eval -i 77 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNjY5MDgwZTlkMmM0ZWY2N2QyYmQyZjI0ZTZhZTcyYWU3Y2E0Y2M5NTI0M2MyYTJkNzc3MGIwMjZjMzgwZTA5ZCddPSRmaWxlc1skaV0= +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 78 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 79 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 80 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 81 -n "$files['file']" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 83 -n "$files" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 84 +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:30:48.091878 + +[35] Log opened at 2024-06-05 06:30:49.222901 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 10 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 11 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 13 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 14 -n "$files['file']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 15 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 18 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 19 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 20 -n "$files['file']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 21 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 23 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 24 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGQ2ZWFhOGM1NzYwNGYxYzRkNGEyMzhhYzRlYmE0YjdkMjRhOTIwMWVmZmFiYThhZGExZmIwNGM5MjczYmFmYiddPSRmaWxlc1snbmFtZSddWyRpXQ== +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 27 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 28 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 29 -n "$files['name']" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 31 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 32 -n "$_FILES" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 33 -n "$files['name'][0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 35 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:31:42.117743 + +[59] Log opened at 2024-06-05 06:32:12.666667 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 11 +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:32:25.353135 + +[59] Log opened at 2024-06-05 06:32:25.807787 +[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. +[61] Log opened at 2024-06-05 06:32:25.819156 +[56] Log opened at 2024-06-05 06:32:25.819389 +[64] Log opened at 2024-06-05 06:32:25.819631 +[57] Log opened at 2024-06-05 06:32:25.819500 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[53] Log opened at 2024-06-05 06:32:25.820231 +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] -> + +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] -> + +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] -> + +[53] [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] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[57] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[57] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[53] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[56] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[61] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[57] [Step Debug] -> + +[59] [Step Debug] -> + +[53] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[57] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[53] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[64] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[56] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[53] [Step Debug] -> + +[57] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[53] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[57] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[53] [Step Debug] -> + +[57] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[53] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[57] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[53] [Step Debug] -> + +[57] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[53] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[53] [Step Debug] -> + +[57] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[53] [Step Debug] -> + +[57] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[53] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[61] [Step Debug] -> + +[64] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[57] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[56] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[61] [Step Debug] -> + +[64] [Step Debug] -> + +[53] [Step Debug] -> + +[56] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[64] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[61] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[64] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[64] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[53] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[56] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[59] [Step Debug] <- run -i 11 +[64] [Step Debug] <- run -i 11 +[57] [Step Debug] <- run -i 11 +[53] [Step Debug] <- run -i 11 +[56] [Step Debug] <- run -i 11 +[61] [Step Debug] <- run -i 11 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:32:27.319476 + +[59] Log opened at 2024-06-05 06:32:27.339050 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 11 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:32:30.589063 + +[61] Log opened at 2024-06-05 06:32:30.607049 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 11 +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:32:32.712987 + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:32:34.355492 + +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:32:36.049154 + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:32:37.839122 + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:32:38.336852 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:32:38.809108 + +[53] Log opened at 2024-06-05 06:32:38.890127 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 11 +[61] Log opened at 2024-06-05 06:32:39.072710 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 11 +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[53] [Step Debug] -> + +[53] Log closed at 2024-06-05 06:32:41.278970 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:32:42.846341 + +[50] Log opened at 2024-06-05 06:32:48.923562 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 843 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 851 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 11 +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 12 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 13 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 14 -n "$files['name'][0]" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 15 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 17 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 18 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 19 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 20 -n "$files['name'][0]" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 21 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 23 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 24 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 25 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 26 -n "$files['name'][0]" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 27 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 29 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 30 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 31 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 32 -n "$files['name'][0]" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 33 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 35 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 36 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 37 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 38 -n "$files['name'][0]" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 39 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- step_over -i 41 +[50] [Step Debug] -> + +[50] [Step Debug] <- stack_get -i 42 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 43 -n "$_FILES" -c 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- property_get -i 44 -n "$files['name'][0]" -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_names -i 45 -d 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 47 +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:33:03.653014 + +[35] Log opened at 2024-06-05 06:33:08.846074 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 9 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:33:21.571917 + +[35] Log opened at 2024-06-05 06:33:21.924300 +[56] Log opened at 2024-06-05 06:33:21.924250 +[64] Log opened at 2024-06-05 06:33:21.924596 +[65] Log opened at 2024-06-05 06:33:21.924431 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[57] Log opened at 2024-06-05 06:33:21.926285 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] Log opened at 2024-06-05 06:33:21.929814 +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [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. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [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). +[56] [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 header 'REMOTE_ADDR'. +[35] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[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] 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. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] -> + +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[56] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[57] [Step Debug] -> + +[35] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[65] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[65] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[35] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[57] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[57] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[65] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[57] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[35] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[57] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[57] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[35] [Step Debug] <- run -i 9 +[56] [Step Debug] <- run -i 9 +[57] [Step Debug] <- run -i 9 +[65] [Step Debug] <- run -i 9 +[59] [Step Debug] <- run -i 9 +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:33:24.696325 + +[64] Log opened at 2024-06-05 06:33:24.715338 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:33:25.155751 + +[59] Log opened at 2024-06-05 06:33:25.170166 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 9 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:33:26.116592 + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:33:26.365124 + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:33:26.600072 + +[57] [Step Debug] -> + +[57] Log closed at 2024-06-05 06:33:27.122932 + +[65] [Step Debug] -> + +[65] Log closed at 2024-06-05 06:33:28.862716 + +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:33:29.357761 + +[59] Log opened at 2024-06-05 06:33:29.434115 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 9 +[64] Log opened at 2024-06-05 06:33:29.539897 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:33:31.622476 + +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:33:33.155995 + +[64] Log opened at 2024-06-05 06:33:37.612879 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:33:42.020835 + +[61] Log opened at 2024-06-05 06:33:44.169539 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:33:53.416611 + +[61] Log opened at 2024-06-05 06:33:53.774227 +[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. +[56] Log opened at 2024-06-05 06:33:53.784839 +[35] Log opened at 2024-06-05 06:33:53.784877 +[50] Log opened at 2024-06-05 06:33:53.784796 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[66] Log opened at 2024-06-05 06:33:53.785706 +[63] Log opened at 2024-06-05 06:33:53.785875 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[56] [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'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [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). +[61] [Step Debug] -> + +[50] [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). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[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] <- feature_set -i 2 -n max_data -v 8192 +[50] [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. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] -> + +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[56] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[63] [Step Debug] -> + +[66] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[35] [Step Debug] -> + +[50] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[61] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[63] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[50] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[61] [Step Debug] -> + +[35] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[56] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[50] [Step Debug] -> + +[35] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[50] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[66] [Step Debug] -> + +[56] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[63] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[50] [Step Debug] <- run -i 9 +[56] [Step Debug] <- run -i 9 +[35] [Step Debug] <- run -i 9 +[63] [Step Debug] <- run -i 9 +[66] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:33:54.895934 + +[61] Log opened at 2024-06-05 06:33:54.915585 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:33:56.683530 + +[56] Log opened at 2024-06-05 06:33:56.704016 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:33:57.246754 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:33:58.485673 + +[66] [Step Debug] -> + +[66] Log closed at 2024-06-05 06:34:00.022804 + +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:34:01.760467 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:34:02.257948 + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:34:02.781482 + +[56] Log opened at 2024-06-05 06:34:02.893264 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[50] Log opened at 2024-06-05 06:34:02.969650 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:34:05.083248 + +[50] [Step Debug] -> + +[50] Log closed at 2024-06-05 06:34:06.583635 + +[65] Log opened at 2024-06-05 06:34:17.317532 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 9 +[65] [Step Debug] -> + +[65] Log closed at 2024-06-05 06:34:21.727818 + +[59] Log opened at 2024-06-05 06:34:28.154555 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 846 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 10 +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:34:34.474279 + +[64] Log opened at 2024-06-05 06:34:41.101163 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 846 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 10 +[64] [Step Debug] -> + +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:34:48.315062 + +[67] Log opened at 2024-06-05 06:35:59.532076 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 849 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 10 +[67] [Step Debug] -> + +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:36:07.667332 + +[67] Log opened at 2024-06-05 06:36:10.434594 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 9 +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:36:21.802494 + +[35] Log opened at 2024-06-05 06:36:22.181719 +[66] Log opened at 2024-06-05 06:36:22.181898 +[67] Log opened at 2024-06-05 06:36:22.181962 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[61] Log opened at 2024-06-05 06:36:22.185414 +[63] Log opened at 2024-06-05 06:36:22.185439 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[56] Log opened at 2024-06-05 06:36:22.186547 +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [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). +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [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. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [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 header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] 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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 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] -> + +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[61] [Step Debug] -> + +[67] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[66] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[67] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[67] [Step Debug] -> + +[66] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[66] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[66] [Step Debug] -> + +[67] [Step Debug] -> + +[56] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[66] [Step Debug] -> + +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[67] [Step Debug] <- run -i 9 +[35] [Step Debug] <- run -i 9 +[66] [Step Debug] <- run -i 9 +[63] [Step Debug] <- run -i 9 +[61] [Step Debug] <- run -i 9 +[56] [Step Debug] <- run -i 9 +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:36:26.112290 + +[67] Log opened at 2024-06-05 06:36:26.130117 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 9 +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:36:27.540395 + +[63] Log opened at 2024-06-05 06:36:27.553126 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 9 +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:36:28.792238 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:36:28.964548 + +[66] [Step Debug] -> + +[66] Log closed at 2024-06-05 06:36:30.770410 + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:36:32.830479 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:36:34.879193 + +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:36:35.496228 + +[61] Log opened at 2024-06-05 06:36:35.598253 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[67] Log opened at 2024-06-05 06:36:35.782490 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:36:37.927660 + +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:36:39.387189 + +[65] Log opened at 2024-06-05 06:49:53.985631 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 9 +[65] [Step Debug] -> + +[65] Log closed at 2024-06-05 06:50:07.247185 + +[63] Log opened at 2024-06-05 06:50:07.619558 +[65] Log opened at 2024-06-05 06:50:07.619866 +[35] Log opened at 2024-06-05 06:50:07.619818 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[64] Log opened at 2024-06-05 06:50:07.619521 +[59] Log opened at 2024-06-05 06:50:07.619881 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[68] Log opened at 2024-06-05 06:50:07.620297 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[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'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [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 '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[65] [Step Debug] -> + +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connected to debugging client: 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] -> + +[64] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[65] [Step Debug] -> + +[35] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[68] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[68] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[63] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[68] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[63] [Step Debug] <- run -i 9 +[35] [Step Debug] <- run -i 9 +[65] [Step Debug] <- run -i 9 +[68] [Step Debug] <- run -i 9 +[64] [Step Debug] <- run -i 9 +[59] [Step Debug] <- run -i 9 +[65] [Step Debug] -> + +[65] Log closed at 2024-06-05 06:50:12.048501 + +[65] Log opened at 2024-06-05 06:50:12.069776 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 9 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:50:13.540653 + +[59] Log opened at 2024-06-05 06:50:13.553850 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 9 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:50:14.748943 + +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:50:14.910661 + +[68] [Step Debug] -> + +[68] Log closed at 2024-06-05 06:50:16.705421 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:50:18.490288 + +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:50:20.178130 + +[65] [Step Debug] -> + +[65] Log closed at 2024-06-05 06:50:20.694311 + +[35] Log opened at 2024-06-05 06:50:20.813915 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 9 +[64] Log opened at 2024-06-05 06:50:20.944993 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:50:22.977874 + +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:50:24.569124 + +[61] Log opened at 2024-06-05 06:51:53.995125 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:52:08.243416 + +[61] Log opened at 2024-06-05 06:52:08.670282 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[59] Log opened at 2024-06-05 06:52:08.671305 +[63] Log opened at 2024-06-05 06:52:08.671412 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[69] Log opened at 2024-06-05 06:52:08.671847 +[67] Log opened at 2024-06-05 06:52:08.671806 +[68] Log opened at 2024-06-05 06:52:08.672823 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[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'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [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 header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [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). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[68] [Step Debug] -> + +[69] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[67] [Step Debug] -> + +[59] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[69] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[69] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[69] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[63] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[69] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[63] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[68] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[69] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[61] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[68] [Step Debug] -> + +[59] [Step Debug] -> + +[69] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[69] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[63] [Step Debug] -> + +[61] [Step Debug] -> + +[68] [Step Debug] -> + +[69] [Step Debug] -> + +[59] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[69] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[68] [Step Debug] -> + +[69] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[67] [Step Debug] <- run -i 9 +[59] [Step Debug] <- run -i 9 +[63] [Step Debug] <- run -i 9 +[69] [Step Debug] <- run -i 9 +[68] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:52:12.140635 + +[61] Log opened at 2024-06-05 06:52:12.159916 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[68] [Step Debug] -> + +[68] Log closed at 2024-06-05 06:52:12.656904 + +[68] Log opened at 2024-06-05 06:52:12.670429 +[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. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 9 +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:52:13.121346 + +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:52:13.861543 + +[68] [Step Debug] -> + +[68] Log closed at 2024-06-05 06:52:13.912464 + +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:52:16.375983 + +[69] [Step Debug] -> + +[69] Log closed at 2024-06-05 06:52:18.120598 + +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:52:18.632208 + +[67] Log opened at 2024-06-05 06:52:18.714398 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 9 +[68] Log opened at 2024-06-05 06:52:18.819433 +[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. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[68] [Step Debug] <- run -i 9 +[67] [Step Debug] -> + +[67] Log closed at 2024-06-05 06:52:20.931032 + +[68] [Step Debug] -> + +[68] Log closed at 2024-06-05 06:52:23.894797 + +[35] Log opened at 2024-06-05 06:53:42.109663 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 9 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:53:55.483501 + +[64] Log opened at 2024-06-05 06:53:55.891919 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[63] Log opened at 2024-06-05 06:53:55.894789 +[59] Log opened at 2024-06-05 06:53:55.894962 +[35] Log opened at 2024-06-05 06:53:55.894722 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[56] Log opened at 2024-06-05 06:53:55.896558 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[70] Log opened at 2024-06-05 06:53:55.897281 +[70] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.70' +[64] [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'. +[63] [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'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [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. +[63] [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. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [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: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[70] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[70] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[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. +[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. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[70] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[70] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[63] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[70] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[70] [Step Debug] -> + +[56] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[35] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[70] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[70] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[35] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[64] [Step Debug] -> + +[35] [Step Debug] -> + +[63] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[70] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[70] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[64] [Step Debug] -> + +[63] [Step Debug] -> + +[35] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[70] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[56] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[70] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[70] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[35] [Step Debug] <- run -i 9 +[59] [Step Debug] <- run -i 9 +[63] [Step Debug] <- run -i 9 +[56] [Step Debug] <- run -i 9 +[70] [Step Debug] <- run -i 9 +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:53:59.392418 + +[35] Log opened at 2024-06-05 06:53:59.411261 +[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] INFO: Connected to debugging client: 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] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 9 +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:54:00.810873 + +[63] Log opened at 2024-06-05 06:54:00.826022 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 9 +[59] [Step Debug] -> + +[59] Log closed at 2024-06-05 06:54:01.913077 + +[63] [Step Debug] -> + +[63] Log closed at 2024-06-05 06:54:02.050549 + +[70] [Step Debug] -> + +[70] Log closed at 2024-06-05 06:54:03.633850 + +[56] [Step Debug] -> + +[56] Log closed at 2024-06-05 06:54:05.422618 + +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:54:07.328890 + +[35] [Step Debug] -> + +[35] Log closed at 2024-06-05 06:54:07.894999 + +[64] Log opened at 2024-06-05 06:54:07.978630 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 9 +[70] Log opened at 2024-06-05 06:54:08.193535 +[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] INFO: Connected to debugging client: 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] -> + +[70] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[70] [Step Debug] -> + +[70] [Step Debug] <- run -i 9 +[64] [Step Debug] -> + +[64] Log closed at 2024-06-05 06:54:10.264322 + +[70] [Step Debug] -> + +[70] Log closed at 2024-06-05 06:54:11.858425 + +[61] Log opened at 2024-06-05 06:54:43.715290 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] [Step Debug] <- stop -i 10 +[61] [Step Debug] -> + +[61] Log closed at 2024-06-05 06:54:57.800395 + +[61] Log opened at 2024-06-05 06:54:58.174762 +[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. +[68] Log opened at 2024-06-05 06:54:58.189447 +[71] Log opened at 2024-06-05 06:54:58.189442 +[67] Log opened at 2024-06-05 06:54:58.189475 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[63] Log opened at 2024-06-05 06:54:58.190893 +[59] Log opened at 2024-06-05 06:54:58.189417 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [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'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [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. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [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). +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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 '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: 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 '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] ERR: Could not connect to debugging 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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:54:59.661895 + +[61] Log opened at 2024-06-05 06:54:59.681129 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:01.890627 + +[63] Log opened at 2024-06-05 06:55:01.908801 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:02.861161 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:05.173827 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:05.988849 + +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:07.957660 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:08.570721 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:09.084873 + +[63] Log opened at 2024-06-05 06:55:09.153848 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 06:55:09.282700 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:11.473398 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 06:55:13.079604 + +[35] Log opened at 2024-06-05 06:55:44.043193 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 06:55:51.130304 + +[35] Log opened at 2024-06-05 06:55:51.303151 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 06:55:53.271802 + +[35] Log opened at 2024-06-05 06:55:53.333942 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log opened at 2024-06-05 06:55:53.433108 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 06:55:55.346697 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 06:55:57.093723 + +[70] Log opened at 2024-06-05 06:57:40.430646 +[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] INFO: Connected to debugging client: 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] -> + +[70] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 854 +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[70] [Step Debug] -> + +[70] [Step Debug] <- run -i 10 +[70] [Step Debug] -> + +[70] Log closed at 2024-06-05 06:57:48.404391 + +[70] Log opened at 2024-06-05 06:57:48.614489 +[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] INFO: Connected to debugging client: 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] -> + +[70] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[70] [Step Debug] -> + +[70] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 854 +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[70] [Step Debug] -> + +[70] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[70] [Step Debug] -> + +[70] [Step Debug] <- run -i 10 +[70] [Step Debug] -> + +[70] Log closed at 2024-06-05 06:57:51.276810 + +[72] Log opened at 2024-06-05 06:58:05.899047 +[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] INFO: Connected to debugging client: 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] -> + +[72] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 854 +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[72] [Step Debug] -> + +[72] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 10 +[72] [Step Debug] -> + +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 11 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 12 -n "$_FILES" -c 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 13 -n "$files['name'][0]" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_value -i 14 -d 0 -c 0 -n "$files['name'][0]" -m 60 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 15 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 17 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 18 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 19 -n "$_FILES" -c 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 20 -n "$files['name'][0]" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_value -i 21 -d 0 -c 0 -n "$files['name'][0]" -m 60 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 22 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_value -i 24 -d 0 -c 0 -n "$name" -m 60 +[72] [Step Debug] -> + +[72] [Step Debug] <- step_over -i 25 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 26 +[72] [Step Debug] -> + +[72] [Step Debug] <- stack_get -i 27 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 28 -n "$_FILES" -c 1 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 29 -n "$files['name'][0]" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_value -i 30 -d 0 -c 0 -n "$files['name'][0]" -m 60 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_names -i 31 -d 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_value -i 33 -d 0 -c 0 -n "$name" -m 60 +[72] [Step Debug] -> + +[72] [Step Debug] <- property_get -i 34 -n "$tmp_name" -d 0 -c 0 +[72] [Step Debug] -> + +[72] [Step Debug] <- run -i 35 +[72] [Step Debug] -> + +[72] Log closed at 2024-06-05 06:58:55.858808 + +[71] Log opened at 2024-06-05 07:00:34.574327 +[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] INFO: Connected to debugging client: 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] -> + +[71] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[71] [Step Debug] -> + +[71] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[71] [Step Debug] -> + +[71] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[71] [Step Debug] -> + +[71] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[71] [Step Debug] -> + +[71] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 854 +[71] [Step Debug] -> + +[71] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[71] [Step Debug] -> + +[71] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[71] [Step Debug] -> + +[71] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[71] [Step Debug] -> + +[71] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[71] [Step Debug] -> + +[71] [Step Debug] <- run -i 10 +[71] [Step Debug] -> + +[71] [Step Debug] -> + +[71] Log closed at 2024-06-05 07:00:42.718714 + +[59] Log opened at 2024-06-05 07:00:55.617164 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:03.206222 + +[59] Log opened at 2024-06-05 07:01:05.044914 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:14.086619 + +[59] Log opened at 2024-06-05 07:01:14.436165 +[67] Log opened at 2024-06-05 07:01:14.436196 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[63] Log opened at 2024-06-05 07:01:14.438890 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[35] Log opened at 2024-06-05 07:01:14.439917 +[61] Log opened at 2024-06-05 07:01:14.440165 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] Log opened at 2024-06-05 07:01:14.441815 +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[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] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [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'. +[67] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [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. +[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] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [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). +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [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. +[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. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[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). +[64] [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', poll success, but error: Operation now in progress (29). +[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). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:18.254676 + +[59] Log opened at 2024-06-05 07:01:18.273685 +[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', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 07:01:19.702218 + +[35] Log opened at 2024-06-05 07:01:19.715787 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 07:01:20.922121 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:01:21.121791 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:22.916332 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:24.371292 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:26.048980 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:26.554796 + +[61] Log opened at 2024-06-05 07:01:26.669940 +[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', poll success, but error: Operation now in progress (29). +[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). +[63] Log opened at 2024-06-05 07:01:26.816752 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:28.998505 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:30.559116 + +[72] Log opened at 2024-06-05 07:01:41.459066 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:48.605113 + +[72] Log opened at 2024-06-05 07:01:49.405416 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:01:52.381961 + +[71] Log opened at 2024-06-05 07:02:00.791138 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:02:06.136386 + +[71] Log opened at 2024-06-05 07:02:06.924846 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:02:10.063604 + +[68] Log opened at 2024-06-05 07:03:49.106825 +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:00.431882 + +[68] Log opened at 2024-06-05 07:04:00.803974 +[35] Log opened at 2024-06-05 07:04:00.804035 +[64] Log opened at 2024-06-05 07:04:00.804066 +[59] Log opened at 2024-06-05 07:04:00.804154 +[73] Log opened at 2024-06-05 07:04:00.803995 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[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'. +[67] Log opened at 2024-06-05 07:04:00.810440 +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [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 header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [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. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [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). +[73] [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. +[64] [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. +[35] [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: 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. +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:04.777588 + +[68] Log opened at 2024-06-05 07:04:04.793586 +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 07:04:06.288972 + +[35] Log opened at 2024-06-05 07:04:06.302719 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 07:04:07.490640 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:07.654392 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:04:09.245424 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:10.919244 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:12.611136 + +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:13.121256 + +[59] Log opened at 2024-06-05 07:04:13.198837 +[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', poll success, but error: Operation now in progress (29). +[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). +[73] Log opened at 2024-06-05 07:04:13.286763 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:15.329247 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:16.847721 + +[63] Log opened at 2024-06-05 07:04:26.020665 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:37.986297 + +[63] Log opened at 2024-06-05 07:04:38.208485 +[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. +[35] Log opened at 2024-06-05 07:04:38.218501 +[67] Log opened at 2024-06-05 07:04:38.218471 +[71] Log opened at 2024-06-05 07:04:38.218409 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[74] Log opened at 2024-06-05 07:04:38.218740 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[72] Log opened at 2024-06-05 07:04:38.220380 +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[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). +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [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. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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'. +[74] [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'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[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: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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: 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 '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. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:39.378081 + +[63] Log opened at 2024-06-05 07:04:39.399640 +[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', poll success, but error: Operation now in progress (29). +[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). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 07:04:41.153430 + +[35] Log opened at 2024-06-05 07:04:41.178481 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:41.689309 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:43.049002 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:44.574735 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:45.081427 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:04:47.727056 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-06-05 07:04:48.234281 + +[68] Log opened at 2024-06-05 07:06:03.173890 +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:15.660242 + +[73] Log opened at 2024-06-05 07:06:16.092921 +[59] Log opened at 2024-06-05 07:06:16.092897 +[68] Log opened at 2024-06-05 07:06:16.092973 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[75] Log opened at 2024-06-05 07:06:16.094529 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[67] Log opened at 2024-06-05 07:06:16.096163 +[72] Log opened at 2024-06-05 07:06:16.096287 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [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). +[73] [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). +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [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 '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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:19.370884 + +[68] Log opened at 2024-06-05 07:06:19.387119 +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:19.865385 + +[72] Log opened at 2024-06-05 07:06:19.876731 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:21.040382 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:21.206004 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:22.851584 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:24.494322 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:26.184339 + +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:26.685416 + +[67] Log opened at 2024-06-05 07:06:26.761455 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 07:06:26.934247 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:29.022555 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:30.523276 + +[71] Log opened at 2024-06-05 07:06:35.776359 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:40.291986 + +[71] Log opened at 2024-06-05 07:06:41.169677 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:06:44.980925 + +[74] Log opened at 2024-06-05 07:08:11.114768 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:23.851955 + +[74] Log opened at 2024-06-05 07:08:24.207653 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[63] Log opened at 2024-06-05 07:08:24.208473 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[75] Log opened at 2024-06-05 07:08:24.209317 +[73] Log opened at 2024-06-05 07:08:24.209344 +[72] Log opened at 2024-06-05 07:08:24.209506 +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[76] Log opened at 2024-06-05 07:08:24.209881 +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[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'. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [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). +[75] [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: 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 '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). +[72] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[76] [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', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[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). +[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). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:28.083822 + +[74] Log opened at 2024-06-05 07:08:28.098751 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:29.562432 + +[63] Log opened at 2024-06-05 07:08:29.575932 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:30.830925 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:31.027388 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:32.773417 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:34.510753 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:36.215833 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:36.742551 + +[75] Log opened at 2024-06-05 07:08:36.828498 +[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', poll success, but error: Operation now in progress (29). +[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). +[73] Log opened at 2024-06-05 07:08:36.938490 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:39.035072 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:40.480854 + +[67] Log opened at 2024-06-05 07:08:48.530692 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:08:57.015494 + +[67] Log opened at 2024-06-05 07:08:57.053346 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:02.267530 + +[67] Log opened at 2024-06-05 07:09:02.707879 +[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', poll success, but error: Operation now in progress (29). +[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). +[71] Log opened at 2024-06-05 07:09:03.173204 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:04.130141 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:06.896741 + +[77] Log opened at 2024-06-05 07:09:25.196854 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:37.426429 + +[77] Log opened at 2024-06-05 07:09:37.850895 +[73] Log opened at 2024-06-05 07:09:37.850933 +[74] Log opened at 2024-06-05 07:09:37.850941 +[72] Log opened at 2024-06-05 07:09:37.851009 +[76] Log opened at 2024-06-05 07:09:37.851053 +[75] Log opened at 2024-06-05 07:09:37.850982 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[72] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.72' +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[72] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [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'. +[76] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[72] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[72] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[72] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [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. +[76] [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). +[75] [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). +[73] [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). +[76] [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. +[74] [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: 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 '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: 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. +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[72] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] ERR: Could not connect to debugging 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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:41.926225 + +[77] Log opened at 2024-06-05 07:09:41.943270 +[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', poll success, but error: Operation now in progress (29). +[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] 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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:42.410148 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:42.823935 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:43.255783 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:43.726960 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:45.256764 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:45.744449 + +[75] Log opened at 2024-06-05 07:09:45.815921 +[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', poll success, but error: Operation now in progress (29). +[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). +[73] Log opened at 2024-06-05 07:09:45.914869 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:47.974805 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:09:49.449526 + +[67] Log opened at 2024-06-05 07:27:15.854845 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:28.898220 + +[63] Log opened at 2024-06-05 07:27:29.439395 +[67] Log opened at 2024-06-05 07:27:29.439424 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[71] Log opened at 2024-06-05 07:27:29.440264 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[74] Log opened at 2024-06-05 07:27:29.441574 +[76] Log opened at 2024-06-05 07:27:29.441544 +[74] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[76] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.76' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] Log opened at 2024-06-05 07:27:29.444267 +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[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. +[63] [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 for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [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 for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header '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. +[76] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[74] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [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. +[76] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[74] [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). +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[76] [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). +[63] [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. +[76] [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. +[76] [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. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[76] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:33.894466 + +[67] Log opened at 2024-06-05 07:27:33.914570 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:35.392354 + +[71] Log opened at 2024-06-05 07:27:35.404963 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:36.816956 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:36.970038 + +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:27:38.936829 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:41.272738 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:43.447289 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:44.010759 + +[76] Log opened at 2024-06-05 07:27:44.181150 +[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', poll success, but error: Operation now in progress (29). +[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). +[63] Log opened at 2024-06-05 07:27:44.326120 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:47.009905 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:27:48.496607 + +[77] Log opened at 2024-06-05 07:28:20.971940 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:28:28.139226 + +[77] Log opened at 2024-06-05 07:28:28.981587 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:28:31.684862 + +[73] Log opened at 2024-06-05 07:29:13.937558 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:26.999888 + +[73] Log opened at 2024-06-05 07:29:27.417659 +[78] Log opened at 2024-06-05 07:29:27.417713 +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[71] Log opened at 2024-06-05 07:29:27.418928 +[67] Log opened at 2024-06-05 07:29:27.418875 +[79] Log opened at 2024-06-05 07:29:27.418708 +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[74] Log opened at 2024-06-05 07:29:27.422337 +[78] [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] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.74' +[73] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[73] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [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. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[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] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[73] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[74] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] INFO: Checking header '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. +[79] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[74] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [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 '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] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[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). +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[74] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:30.646118 + +[73] Log opened at 2024-06-05 07:29:30.662524 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:31.249854 + +[74] Log opened at 2024-06-05 07:29:31.261347 +[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', poll success, but error: Operation now in progress (29). +[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] 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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:29:31.874798 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:32.590223 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:33.181194 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:34.232728 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:36.082350 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:36.687923 + +[79] Log opened at 2024-06-05 07:29:36.788855 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 07:29:36.867179 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:39.010974 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:29:43.217167 + +[63] Log opened at 2024-06-05 07:29:53.393860 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:06.882767 + +[63] Log opened at 2024-06-05 07:30:07.253324 +[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. +[78] Log opened at 2024-06-05 07:30:07.266053 +[75] Log opened at 2024-06-05 07:30:07.266095 +[77] Log opened at 2024-06-05 07:30:07.266137 +[67] Log opened at 2024-06-05 07:30:07.266803 +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[75] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.75' +[80] Log opened at 2024-06-05 07:30:07.266746 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[77] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[78] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[75] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[77] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[75] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[77] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[78] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [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 '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. +[75] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [Step Debug] INFO: Checking header '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. +[75] [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: 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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[77] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[75] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[80] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:08.557457 + +[63] Log opened at 2024-06-05 07:30:08.580684 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:11.334965 + +[77] Log opened at 2024-06-05 07:30:11.354283 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:11.794583 + +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:30:13.135338 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:14.799545 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:15.287689 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:16.721755 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:17.383567 + +[77] Log opened at 2024-06-05 07:30:17.459845 +[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', poll success, but error: Operation now in progress (29). +[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] Log opened at 2024-06-05 07:30:17.586583 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:19.657578 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:30:22.658475 + +[73] Log opened at 2024-06-05 07:32:19.007518 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:31.328847 + +[67] Log opened at 2024-06-05 07:32:31.696381 +[71] Log opened at 2024-06-05 07:32:31.696308 +[79] Log opened at 2024-06-05 07:32:31.696494 +[73] Log opened at 2024-06-05 07:32:31.696463 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[71] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.71' +[79] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.79' +[73] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.73' +[81] Log opened at 2024-06-05 07:32:31.697777 +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[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'. +[78] Log opened at 2024-06-05 07:32:31.701887 +[73] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[79] [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'. +[73] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[79] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[71] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[73] [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 header 'REMOTE_ADDR'. +[79] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[71] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[79] [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. +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[79] [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 '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. +[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] 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. +[73] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[71] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[79] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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). +[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). +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:35.644986 + +[73] Log opened at 2024-06-05 07:32:35.659606 +[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', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:37.086110 + +[81] Log opened at 2024-06-05 07:32:37.097819 +[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. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:38.372880 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:38.570533 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:40.453441 + +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:32:42.436239 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:44.200941 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:44.704966 + +[73] Log opened at 2024-06-05 07:32:44.790033 +[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', poll success, but error: Operation now in progress (29). +[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). +[78] Log opened at 2024-06-05 07:32:44.903039 +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:32:46.995634 + +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:32:48.566288 + +[73] Log opened at 2024-06-05 07:34:08.168508 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:15.183059 + +[73] Log opened at 2024-06-05 07:34:16.023154 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:19.086430 + +[78] Log opened at 2024-06-05 07:34:31.461055 +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:34:41.077524 + +[77] Log opened at 2024-06-05 07:34:41.263643 +[78] Log opened at 2024-06-05 07:34:41.263760 +[67] Log opened at 2024-06-05 07:34:41.263814 +[63] Log opened at 2024-06-05 07:34:41.263836 +[77] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.77' +[78] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.78' +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[80] Log opened at 2024-06-05 07:34:41.266680 +[81] Log opened at 2024-06-05 07:34:41.267428 +[80] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.80' +[81] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.81' +[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'. +[67] [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'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[78] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[77] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[78] [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 header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[78] [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: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [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). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[80] [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. +[77] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[80] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[81] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[80] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[81] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[80] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[81] [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', poll success, but error: Operation now in progress (29). +[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). +[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). +[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', poll success, but error: Operation now in progress (29). +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:34:46.349757 + +[78] Log opened at 2024-06-05 07:34:46.367172 +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:47.701353 + +[80] Log opened at 2024-06-05 07:34:47.713044 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:48.906051 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:49.089529 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:50.778067 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:52.428015 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:54.086913 + +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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. +[78] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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] Log closed at 2024-06-05 07:34:54.657958 + +[67] Log opened at 2024-06-05 07:34:54.704884 +[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', poll success, but error: Operation now in progress (29). +[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). +[81] Log opened at 2024-06-05 07:34:54.745126 +[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. +[81] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[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). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:56.789451 + +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:34:58.203579 + +[67] Log opened at 2024-06-05 07:35:00.362207 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:35:07.152069 + +[67] Log opened at 2024-06-05 07:35:07.950008 +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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', poll success, but error: Operation now in progress (29). +[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-06-05 07:35:11.500896 +