diff --git a/ci4/app/Controllers/Tarifas/Tarifasenviosprecios.php b/ci4/app/Controllers/Tarifas/Tarifasenviosprecios.php index 7a190c0b..ff4ac800 100755 --- a/ci4/app/Controllers/Tarifas/Tarifasenviosprecios.php +++ b/ci4/app/Controllers/Tarifas/Tarifasenviosprecios.php @@ -1,4 +1,5 @@ -viewData['pageTitle'] = lang('TarifasEnviosPrecios.moduleTitle'); $this->viewData['usingSweetAlert'] = true; @@ -48,66 +51,68 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { } - public function index() { - + public function index() + { + $viewData = [ - 'currentModule' => static::$controllerSlug, - 'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('TarifasEnviosPrecios.tarifaEnvioPrecio')]), - 'tarifaEnvioPrecioEntity' => new TarifaEnvioPrecioEntity(), - 'usingServerSideDataTable' => true, - - ]; + 'currentModule' => static::$controllerSlug, + 'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('TarifasEnviosPrecios.tarifaEnvioPrecio')]), + 'tarifaEnvioPrecioEntity' => new TarifaEnvioPrecioEntity(), + 'usingServerSideDataTable' => true, + + ]; $viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class - return view(static::$viewPath.'viewTarifaEnvioPrecioList', $viewData); + return view(static::$viewPath . 'viewTarifaEnvioPrecioList', $viewData); } - public function add() { - - + public function add() + { - - if ($this->request->getPost()) : + + + + if ($this->request->getPost()): $nullIfEmpty = true; // !(phpversion() >= '8.1'); $postData = $this->request->getPost(); - - $sanitizedData = $this->sanitized($postData, $nullIfEmpty); + + $sanitizedData = $this->sanitized($postData, $nullIfEmpty); $noException = true; - if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) : + if ($successfulResult = $this->canValidate()): // if ($successfulResult = $this->validate($this->formValidationRules) ) : - if ($this->canValidate()) : - try { - $successfulResult = $this->model->skipValidation(true)->save($sanitizedData); - } catch (\Exception $e) { - $noException = false; - $this->dealWithException($e); - } - else: - $this->viewData['errorMessage'] = lang('Basic.global.formErr1', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]); - $this->session->setFlashdata('formErrors', $this->model->errors()); - endif; - - $thenRedirect = true; // Change this to false if you want your user to stay on the form after submission + if ($this->canValidate()): + try { + $successfulResult = $this->model->skipValidation(true)->save($sanitizedData); + } catch (\Exception $e) { + $noException = false; + $this->dealWithException($e); + } + else: + $this->viewData['errorMessage'] = lang('Basic.global.formErr1', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]); + $this->session->setFlashdata('formErrors', $this->model->errors()); + endif; + + $thenRedirect = true; // Change this to false if you want your user to stay on the form after submission endif; - if ($noException && $successfulResult) : + if ($noException && $successfulResult): $id = $this->model->db->insertID(); - $message = lang('Basic.global.saveSuccess', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]).'.'; - $message .= anchor( "admin/tarifasenviosprecios/{$id}/edit" , lang('Basic.global.continueEditing').'?'); + $message = lang('Basic.global.saveSuccess', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]) . '.'; + $message .= anchor("admin/tarifasenviosprecios/{$id}/edit", lang('Basic.global.continueEditing') . '?'); $message = ucfirst(str_replace("'", "\'", $message)); - if ($thenRedirect) : - if (!empty($this->indexRoute)) : - return redirect()->to(route_to( $this->indexRoute ) )->with('sweet-success', $message); + if ($thenRedirect): + if (!empty($this->indexRoute)): + return redirect()->to(route_to($this->indexRoute))->with('sweet-success', $message); else: return $this->redirect2listView('sweet-success', $message); endif; @@ -120,97 +125,98 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { endif; // ($requestMethod === 'post') $this->viewData['tarifaEnvioPrecioEntity'] = isset($sanitizedData) ? new TarifaEnvioPrecioEntity($sanitizedData) : new TarifaEnvioPrecioEntity(); - $this->viewData['tarifaEnvioList'] = $this->getTarifaEnvioListItems($tarifaEnvioPrecioEntity->tarifa_envio_id ?? null); - $this->viewData['proveedorList'] = $this->getProveedorListItems($tarifaEnvioPrecioEntity->proveedor_id ?? null); - $this->viewData['tipoEnvioList'] = $this->getTipoEnvioOptions(); + $this->viewData['tarifaEnvioList'] = $this->getTarifaEnvioListItems($tarifaEnvioPrecioEntity->tarifa_envio_id ?? null); + $this->viewData['proveedorList'] = $this->getProveedorListItems($tarifaEnvioPrecioEntity->proveedor_id ?? null); + $this->viewData['tipoEnvioList'] = $this->getTipoEnvioOptions(); $this->viewData['formAction'] = route_to('createTarifaEnvioPrecio'); - $this->viewData['boxTitle'] = lang('Basic.global.addNew').' '.lang('TarifasEnviosPrecios.moduleTitle').' '.lang('Basic.global.addNewSuffix'); - + $this->viewData['boxTitle'] = lang('Basic.global.addNew') . ' ' . lang('TarifasEnviosPrecios.moduleTitle') . ' ' . lang('Basic.global.addNewSuffix'); + return $this->displayForm(__METHOD__); } // end function add() - public function edit($requestedId = null) { - - if ($requestedId == null) : + public function edit($requestedId = null) + { + + if ($requestedId == null): return $this->redirect2listView(); endif; $id = filter_var($requestedId, FILTER_SANITIZE_URL); $tarifaEnvioPrecioEntity = $this->model->find($id); - if ($tarifaEnvioPrecioEntity == false) : + if ($tarifaEnvioPrecioEntity == false): $message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio')), $id]); return $this->redirect2listView('sweet-error', $message); endif; - - if ($this->request->getPost()) : + + if ($this->request->getPost()): $nullIfEmpty = true; // !(phpversion() >= '8.1'); - + $postData = $this->request->getPost(); - - $sanitizedData = $this->sanitized($postData, $nullIfEmpty); + + $sanitizedData = $this->sanitized($postData, $nullIfEmpty); + - $noException = true; - if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) : - - + if ($successfulResult = $this->canValidate()): // if ($successfulResult = $this->validate($this->formValidationRules) ) : - if ($this->canValidate()) : - try { - $successfulResult = $this->model->skipValidation(true)->update($id, $sanitizedData); - } catch (\Exception $e) { - $noException = false; - $this->dealWithException($e); - } - else: - $this->viewData['warningMessage'] = lang('Basic.global.formErr1', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]); - $this->session->setFlashdata('formErrors', $this->model->errors()); - - endif; - - $tarifaEnvioPrecioEntity->fill($sanitizedData); - $thenRedirect = true; + + if ($this->canValidate()): + try { + $successfulResult = $this->model->skipValidation(true)->update($id, $sanitizedData); + } catch (\Exception $e) { + $noException = false; + $this->dealWithException($e); + } + else: + $this->viewData['warningMessage'] = lang('Basic.global.formErr1', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]); + $this->session->setFlashdata('formErrors', $this->model->errors()); + + endif; + + $tarifaEnvioPrecioEntity->fill($sanitizedData); + + $thenRedirect = true; endif; - if ($noException && $successfulResult) : + if ($noException && $successfulResult): $id = $tarifaEnvioPrecioEntity->id ?? $id; - $message = lang('Basic.global.updateSuccess', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]).'.'; - $message .= anchor( "admin/tarifasenviosprecios/{$id}/edit" , lang('Basic.global.continueEditing').'?'); + $message = lang('Basic.global.updateSuccess', [mb_strtolower(lang('TarifasEnviosPrecios.tarifaEnvioPrecio'))]) . '.'; + $message .= anchor("admin/tarifasenviosprecios/{$id}/edit", lang('Basic.global.continueEditing') . '?'); $message = ucfirst(str_replace("'", "\'", $message)); - if ($thenRedirect) : - if (!empty($this->indexRoute)) : - return redirect()->to(route_to( $this->indexRoute ) )->with('sweet-success', $message); + if ($thenRedirect): + if (!empty($this->indexRoute)): + return redirect()->to(route_to($this->indexRoute))->with('sweet-success', $message); else: return $this->redirect2listView('sweet-success', $message); endif; else: $this->session->setFlashData('sweet-success', $message); endif; - + endif; // $noException && $successfulResult endif; // ($requestMethod === 'post') $this->viewData['tarifaEnvioPrecioEntity'] = $tarifaEnvioPrecioEntity; - $this->viewData['tarifaEnvioList'] = $this->getTarifaEnvioListItems($tarifaEnvioPrecioEntity->tarifa_envio_id ?? null); - $this->viewData['proveedorList'] = $this->getProveedorListItems($tarifaEnvioPrecioEntity->proveedor_id ?? null); - $this->viewData['tipoEnvioList'] = $this->getTipoEnvioOptions(); + $this->viewData['tarifaEnvioList'] = $this->getTarifaEnvioListItems($tarifaEnvioPrecioEntity->tarifa_envio_id ?? null); + $this->viewData['proveedorList'] = $this->getProveedorListItems($tarifaEnvioPrecioEntity->proveedor_id ?? null); + $this->viewData['tipoEnvioList'] = $this->getTipoEnvioOptions(); + + $this->viewData['formAction'] = route_to('updateTarifaEnvioPrecio', $id); + + $this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('TarifasEnviosPrecios.moduleTitle') . ' ' . lang('Basic.global.edit3'); - $this->viewData['formAction'] = route_to('updateTarifaEnvioPrecio', $id); - $this->viewData['boxTitle'] = lang('Basic.global.edit2').' '.lang('TarifasEnviosPrecios.moduleTitle').' '.lang('Basic.global.edit3'); - - return $this->displayForm(__METHOD__, $id); } // end function edit(...) - + public function datatable_editor() { @@ -222,62 +228,101 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { $response = Editor::inst($db, 'tarifas_envios_precios') ->fields( Field::inst('tipo_envio') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.tipo_envio.required')) - ), + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.tipo_envio.required') + ) + ), Field::inst('peso_min') - ->getFormatter( 'Format::toDecimalChar')->setFormatter( 'Format::fromDecimalChar') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.peso_min.required')) + ->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar') + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.peso_min.required') + ) ) - ->validator('Validate::numeric', array( + ->validator( + 'Validate::numeric', + array( "decimal" => ',', - 'message' => lang('TarifasEnviosPrecios.validation.peso_min.decimal')) + 'message' => lang('TarifasEnviosPrecios.validation.peso_min.decimal') + ) ), Field::inst('peso_max') - ->getFormatter( 'Format::toDecimalChar')->setFormatter( 'Format::fromDecimalChar') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.peso_max.required')) + ->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar') + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.peso_max.required') + ) ) - ->validator('Validate::numeric', array( + ->validator( + 'Validate::numeric', + array( "decimal" => ',', - 'message' => lang('TarifasEnviosPrecios.validation.peso_max.decimal')) + 'message' => lang('TarifasEnviosPrecios.validation.peso_max.decimal') + ) ), Field::inst('precio_min') - ->getFormatter( 'Format::toDecimalChar')->setFormatter( 'Format::fromDecimalChar') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.precio.required')) + ->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar') + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.precio.required') + ) ) - ->validator('Validate::numeric', array( - "decimal" => ',', - 'message' => lang('TarifasEnviosPrecios.validation.precio.decimal')) + ->validator( + 'Validate::numeric', + array( + "decimal" => ',', + 'message' => lang('TarifasEnviosPrecios.validation.precio.decimal') + ) ), Field::inst('precio_max') - ->getFormatter( 'Format::toDecimalChar')->setFormatter( 'Format::fromDecimalChar') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.precio.required')) + ->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar') + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.precio.required') + ) ) - ->validator('Validate::numeric', array( + ->validator( + 'Validate::numeric', + array( "decimal" => ',', - 'message' => lang('TarifasEnviosPrecios.validation.precio.decimal')) + 'message' => lang('TarifasEnviosPrecios.validation.precio.decimal') + ) ), Field::inst('precio_adicional') - ->getFormatter( 'Format::toDecimalChar')->setFormatter( 'Format::fromDecimalChar') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required')) + ->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar') + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required') + ) ) - ->validator('Validate::numeric', array( + ->validator( + 'Validate::numeric', + array( "decimal" => ',', - 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal')) + 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal') + ) ), Field::inst('margen') - ->getFormatter( 'Format::toDecimalChar')->setFormatter( 'Format::fromDecimalChar') - ->validator('Validate::required', array( - 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required')) + ->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar') + ->validator( + 'Validate::required', + array( + 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required') + ) ) - ->validator('Validate::numeric', array( + ->validator( + 'Validate::numeric', + array( "decimal" => ',', - 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal')) + 'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal') + ) ), Field::inst('tarifa_envio_id'), Field::inst('proveedor_id'), @@ -344,24 +389,35 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { } - public function datatable() { + public function datatable() + { if ($this->request->isAJAX()) { $reqData = $this->request->getPost(); - if (!isset($reqData['draw']) || !isset($reqData['columns']) ) { + if (!isset($reqData['draw']) || !isset($reqData['columns'])) { $errstr = 'No data available in response to this specific request.'; - $response = $this->respond(Collection::datatable( [], 0, 0, $errstr ), 400, $errstr); + $response = $this->respond(Collection::datatable([], 0, 0, $errstr), 400, $errstr); return $response; } $start = $reqData['start'] ?? 0; $length = $reqData['length'] ?? 5; $search = $reqData['search']['value']; $requestedOrder = $reqData['order']['0']['column'] ?? 1; + $requestedOrder2 = $reqData['order']['1']['column'] ?? $requestedOrder; + $requestedOrder3 = $reqData['order']['2']['column'] ?? $requestedOrder; $order = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder > 0 ? $requestedOrder : 1]; + $order2 = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder2 > 0 ? $requestedOrder2 : 1]; + $order3 = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder3 > 0 ? $requestedOrder3 : 1]; $dir = $reqData['order']['0']['dir'] ?? 'asc'; + $dir2 = $reqData['order']['0']['dir'] ?? $dir; + $dir3 = $reqData['order']['0']['dir'] ?? $dir; + + $tarifa_envio_id = $reqData['tarifa_envio_id'] ?? -1; - $resourceData = $this->model->getResource($search, $tarifa_envio_id)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject(); + $resourceData = $this->model->getResource($search, $tarifa_envio_id) + ->orderBy($order, $dir)->orderBy($order2, $dir2)->orderBy($order3, $dir3) + ->limit($length, $start)->get()->getResultObject(); return $this->respond(Collection::datatable( $resourceData, @@ -373,15 +429,16 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { } } - public function allItemsSelect() { + public function allItemsSelect() + { if ($this->request->isAJAX()) { $onlyActiveOnes = true; $reqVal = $this->request->getPost('val') ?? 'id'; - $menu = $this->model->getAllForMenu($reqVal.', tarifa_envio_id', 'tarifa_envio_id', $onlyActiveOnes, false); + $menu = $this->model->getAllForMenu($reqVal . ', tarifa_envio_id', 'tarifa_envio_id', $onlyActiveOnes, false); $nonItem = new \stdClass; $nonItem->id = ''; - $nonItem->tarifa_envio_id = '- '.lang('Basic.global.None').' -'; - array_unshift($menu , $nonItem); + $nonItem->tarifa_envio_id = '- ' . lang('Basic.global.None') . ' -'; + array_unshift($menu, $nonItem); $newTokenHash = csrf_hash(); $csrfTokenName = csrf_token(); @@ -395,7 +452,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { } } - public function menuItems() { + public function menuItems() + { if ($this->request->isAJAX()) { $searchStr = goSanitize($this->request->getPost('searchTerm'))[0]; $reqId = goSanitize($this->request->getPost('id'))[0]; @@ -406,8 +464,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { $menu = $this->model->getSelect2MenuItems($columns2select, $columns2select[1], $onlyActiveOnes, $searchStr); $nonItem = new \stdClass; $nonItem->id = ''; - $nonItem->text = '- '.lang('Basic.global.None').' -'; - array_unshift($menu , $nonItem); + $nonItem->text = '- ' . lang('Basic.global.None') . ' -'; + array_unshift($menu, $nonItem); $newTokenHash = csrf_hash(); $csrfTokenName = csrf_token(); @@ -422,42 +480,45 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController { } - protected function getTarifaEnvioListItems($selId = null) { - $data = [''=>lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('TarifasEnvios.tarifaEnvio'))])]; - if (!empty($selId)) : - $tarifaEnvioModel = model('App\Models\Tarifas\TarifaEnvioModel'); + protected function getTarifaEnvioListItems($selId = null) + { + $data = ['' => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('TarifasEnvios.tarifaEnvio'))])]; + if (!empty($selId)): + $tarifaEnvioModel = model('App\Models\Tarifas\TarifaEnvioModel'); $selOption = $tarifaEnvioModel->where('id', $selId)->findColumn('id'); - if (!empty($selOption)) : + if (!empty($selOption)): $data[$selId] = $selOption[0]; endif; endif; - return $data; - } + return $data; + } - protected function getProveedorListItems($selId = null) { - $data = [''=>lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('LgProveedores.proveedor'))])]; - if (!empty($selId)) : - $proveedorModel = model('App\Models\compras\ProveedorModel'); + protected function getProveedorListItems($selId = null) + { + $data = ['' => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('LgProveedores.proveedor'))])]; + if (!empty($selId)): + $proveedorModel = model('App\Models\compras\ProveedorModel'); $selOption = $proveedorModel->where('id', $selId)->findColumn('id'); - if (!empty($selOption)) : + if (!empty($selOption)): $data[$selId] = $selOption[0]; endif; endif; - return $data; - } + return $data; + } - protected function getTipoEnvioOptions() { - $tipoEnvioOptions = [ - '' => lang('Basic.global.pleaseSelect'), - 'cajas' => 'cajas', - 'palets' => 'palets', - ]; - return $tipoEnvioOptions; - } + protected function getTipoEnvioOptions() + { + $tipoEnvioOptions = [ + '' => lang('Basic.global.pleaseSelect'), + 'cajas' => 'cajas', + 'palets' => 'palets', + ]; + return $tipoEnvioOptions; + } } diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js index 286cae3a..2a7eb2f3 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js @@ -37,7 +37,7 @@ class Direcciones { init() { - $("#clienteId").on('change', this.handleChangeCliente.bind(this)); + $("#clienteId").on('change', this.handleChangeCliente.bind(this)); this.direccionesCliente.init(); this.btnAdd.on('click', this.#insertDireccion.bind(this)); @@ -125,7 +125,7 @@ class Direcciones { validators: { callback: { callback: () => { - /* const div = $('#divErrorEnvios'); // Selecciona el div + const div = $('#divErrorEnvios'); // Selecciona el div div.find('.fv-plugins-message-container').remove(); @@ -136,7 +136,7 @@ class Direcciones { this.direcciones.forEach(direccion => { total_envio += parseInt(direccion.getUnidades()); }); - if (total_envio == unidades) { + if (total_envio < unidades) { return true; } } @@ -144,13 +144,11 @@ class Direcciones { div.append(`
`); return false; - */ - return true; }, } @@ -260,6 +258,12 @@ class Direcciones { let id = this.direccionesCliente.getVal(); let unidades = this.unidadesAdd.val(); + + if (id == null || id <= 0 || id == undefined) + return; + if (unidades == null || unidades <= 0 || unidades == undefined) + return; + let entregaPalets = this.entregaPieCallero.is(':checked'); let divId = "dirEnvio-1"; let direccionesActuales = this.divDirecciones.find('.direccion-cliente'); @@ -267,12 +271,23 @@ class Direcciones { // the the lass item let last = direccionesActuales[direccionesActuales.length - 1]; divId = "dirEnvio-" + (parseInt(last.id.split('-')[1]) + 1); - } - if (id == null || id <= 0 || id == undefined) - return; - if (unidades == null || unidades <= 0 || unidades == undefined) - return; + let total_unidades = 0; + for (let i = 0; i < this.direcciones.length; i++) { + total_unidades += parseInt(this.direcciones[i].getUnidades()); + } + + if (total_unidades + parseInt(unidades) > this.getSelectedTirada()) { + popErrorAlert("El total de unidades enviadas tiene que ser menor que " + this.getSelectedTirada()); + return; + } + } + else { + if (unidades > this.getSelectedTirada()) { + popErrorAlert("El total de unidades enviadas tiene que ser menor que " + this.getSelectedTirada()); + return; + } + } $('#loader').modal('show'); let peticion = new Ajax('/misdirecciones/get/' + id, {}, {}, diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 6588b183..8efb8ee1 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -142,8 +142,10 @@ class PresupuestoCliente { if (this.calcularPresupuesto) { if (event.target.id === 'divDirecciones') { + this.actualizarTiradasEnvio = false; + if (!this.direcciones.calcularPresupuesto) { - this.actualizarTiradasEnvio = false; + $('#loader').modal('hide'); return; } @@ -348,6 +350,16 @@ class PresupuestoCliente { #confirmPresupuesto() { + let total_unidades = 0; + this.direcciones.direcciones.forEach(element => { + total_unidades += parseInt(element.tirada.val()); + }); + + if(total_unidades != parseInt(this.direcciones.getSelectedTirada())){ + popErrorAlert("No se puede confirmar el presupuesto. La suma de las unidades enviadas no coincide con la tirada seleccionada."); + return; + } + this.#solicitudGuardarPresupuesto(true); } @@ -451,8 +463,9 @@ class PresupuestoCliente { response.precio_u[i] ); - if (this.actualizarTiradasEnvio) + if (this.actualizarTiradasEnvio){ this.direcciones.insertTirada(tiradas[i]); + } } this.lc.val(parseFloat(response.info.lomo_cubierta).toFixed(2)); diff --git a/xdebug.log b/xdebug.log index d6811855..670331f6 100644 --- a/xdebug.log +++ b/xdebug.log @@ -11675,3 +11675,3283 @@ [46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). [46] Log closed at 2024-11-09 11:14:29.119007 +[22] Log opened at 2024-11-12 16:47:01.749512 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[22] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-11-12 16:47:02.809590 + +[23] Log opened at 2024-11-12 16:47:02.879844 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 16:47:03.881280 + +[23] Log opened at 2024-11-12 16:47:04.027425 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 16:47:04.684346 + +[25] Log opened at 2024-11-12 16:47:05.168581 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 16:47:06.134448 + +[30] Log opened at 2024-11-12 16:47:13.106872 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:47:14.473113 + +[30] Log opened at 2024-11-12 16:47:14.483399 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:47:15.566129 + +[31] Log opened at 2024-11-12 16:47:15.628463 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 16:47:16.274004 + +[32] Log opened at 2024-11-12 16:47:16.356830 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-12 16:47:16.370813 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 16:47:17.297800 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-12 16:47:17.989894 + +[27] Log opened at 2024-11-12 16:52:24.722565 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 16:52:25.961449 + +[25] Log opened at 2024-11-12 16:52:26.045505 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 16:52:26.690879 + +[30] Log opened at 2024-11-12 16:52:26.817511 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-12 16:52:26.820675 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-12 16:52:26.921377 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 16:52:27.769116 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:52:28.386359 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 16:52:28.789013 + +[30] Log opened at 2024-11-12 16:52:31.788408 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:52:33.514659 + +[30] Log opened at 2024-11-12 16:52:33.585361 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:52:34.226928 + +[30] Log opened at 2024-11-12 16:52:34.412814 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-12 16:52:34.418346 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-12 16:52:34.439472 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-12 16:52:34.498800 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-11-12 16:52:34.504783 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 16:52:35.400857 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:52:36.019816 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 16:52:36.361909 + +[30] Log opened at 2024-11-12 16:52:36.396992 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-12 16:52:36.835038 + +[24] Log opened at 2024-11-12 16:52:36.847407 +[31] Log opened at 2024-11-12 16:52:36.847407 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-12 16:52:36.847741 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 16:52:37.220138 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:52:37.923735 + +[30] Log opened at 2024-11-12 16:52:38.051122 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 16:52:38.290416 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 16:52:38.669879 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-12 16:52:39.043682 + +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 16:52:41.646402 + +[33] Log opened at 2024-11-12 17:03:17.772621 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:03:19.459485 + +[33] Log opened at 2024-11-12 17:03:19.536085 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:03:20.176823 + +[25] Log opened at 2024-11-12 17:03:20.316978 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:03:20.320701 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-12 17:03:20.345370 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:03:20.400982 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-12 17:03:20.412010 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:03:21.304330 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:03:21.883161 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:03:22.220027 + +[27] Log opened at 2024-11-12 17:03:22.248573 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:03:22.690839 + +[34] Log opened at 2024-11-12 17:03:22.702426 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:03:22.702122 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:03:22.702546 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:03:23.075282 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:03:23.819352 + +[27] Log opened at 2024-11-12 17:03:23.893923 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:03:24.159956 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:03:24.548394 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:03:24.905878 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:03:27.345929 + +[27] Log opened at 2024-11-12 17:03:31.602755 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:03:32.681739 + +[27] Log opened at 2024-11-12 17:03:34.329852 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:03:35.418533 + +[24] Log opened at 2024-11-12 17:04:28.510699 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:04:30.228405 + +[24] Log opened at 2024-11-12 17:04:30.342499 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:04:30.998566 + +[32] Log opened at 2024-11-12 17:04:31.227197 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-12 17:04:31.232647 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-12 17:04:31.265812 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-12 17:04:31.309550 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] Log opened at 2024-11-12 17:04:31.317984 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:04:32.245898 + +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-12 17:04:32.881009 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:04:33.378923 + +[31] Log opened at 2024-11-12 17:04:33.395208 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] Log opened at 2024-11-12 17:04:33.395110 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] Log opened at 2024-11-12 17:04:33.395277 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:04:33.708170 + +[34] Log opened at 2024-11-12 17:04:33.750329 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-11-12 17:04:34.078141 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:04:34.489941 + +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-12 17:04:34.852472 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:04:35.229244 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:04:35.946185 + +[32] Log opened at 2024-11-12 17:04:36.029308 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[32] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-11-12 17:04:39.631421 + +[33] Log opened at 2024-11-12 17:04:41.946538 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:04:43.617269 + +[33] Log opened at 2024-11-12 17:04:43.704420 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:04:44.361662 + +[25] Log opened at 2024-11-12 17:04:44.594107 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-12 17:04:44.602023 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:04:44.628922 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-12 17:04:44.685263 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-11-12 17:04:44.690343 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:04:45.606816 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:04:46.186672 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:04:46.514424 + +[25] Log opened at 2024-11-12 17:04:46.546390 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:04:46.987536 + +[24] Log opened at 2024-11-12 17:04:47.000646 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:04:47.001387 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-12 17:04:47.001633 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 17:04:47.374012 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:04:48.134972 + +[25] Log opened at 2024-11-12 17:04:48.212058 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:04:48.515435 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:04:48.868357 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:04:49.263351 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:04:51.938390 + +[26] Log opened at 2024-11-12 17:05:02.595406 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:05:03.692544 + +[23] Log opened at 2024-11-12 17:05:42.360655 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 17:05:44.074906 + +[23] Log opened at 2024-11-12 17:05:44.269791 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 17:05:44.934203 + +[26] Log opened at 2024-11-12 17:05:45.343006 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:05:45.411419 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-12 17:05:45.417659 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:05:45.438545 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-12 17:05:45.439911 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:05:46.446592 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:05:47.097334 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:05:47.417604 + +[26] Log opened at 2024-11-12 17:05:47.452951 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:05:47.914230 + +[25] Log opened at 2024-11-12 17:05:47.932173 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[36] Log opened at 2024-11-12 17:05:47.932424 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:05:47.932173 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:05:48.454323 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:05:49.784893 + +[26] Log opened at 2024-11-12 17:05:49.876245 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:05:50.481833 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:05:51.042130 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:05:51.398782 + +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:05:54.025539 + +[26] Log opened at 2024-11-12 17:05:57.943260 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[26] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-11-12 17:05:59.030888 + +[34] Log opened at 2024-11-12 17:06:09.364536 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:06:10.460186 + +[37] Log opened at 2024-11-12 17:08:35.959341 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-12 17:08:37.647724 + +[37] Log opened at 2024-11-12 17:08:37.847111 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-12 17:08:38.517750 + +[36] Log opened at 2024-11-12 17:08:38.954385 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-12 17:08:38.962124 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:08:38.970873 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:08:38.976322 +[23] Log opened at 2024-11-12 17:08:38.976321 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:08:39.997588 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:08:40.652387 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:08:40.992049 + +[36] Log opened at 2024-11-12 17:08:41.032819 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:08:41.356691 + +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 17:08:41.933111 + +[27] Log opened at 2024-11-12 17:08:41.951425 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-11-12 17:08:41.951940 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] Log opened at 2024-11-12 17:08:41.952363 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:08:42.676172 + +[36] Log opened at 2024-11-12 17:08:42.752548 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:08:43.047812 + +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[23] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-11-12 17:08:43.412935 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:08:43.773183 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:08:46.401863 + +[36] Log opened at 2024-11-12 17:08:48.354404 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:08:49.403700 + +[36] Log opened at 2024-11-12 17:08:51.983714 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:08:53.070921 + +[31] Log opened at 2024-11-12 17:09:05.100111 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:09:06.783620 + +[31] Log opened at 2024-11-12 17:09:06.971662 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:09:07.635323 + +[33] Log opened at 2024-11-12 17:09:08.043274 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:09:08.106051 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] Log opened at 2024-11-12 17:09:08.115639 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-11-12 17:09:08.123471 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:09:08.131927 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:09:09.087439 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:09:09.708044 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-12 17:09:10.193500 + +[33] Log opened at 2024-11-12 17:09:10.207883 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:09:10.209457 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-11-12 17:09:10.209911 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-12 17:09:10.543265 + +[38] Log opened at 2024-11-12 17:09:10.579852 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:09:10.936510 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:09:11.283901 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:09:11.669844 + +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-12 17:09:12.032566 + +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[38] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[38] Log closed at 2024-11-12 17:09:12.697781 + +[25] Log opened at 2024-11-12 17:09:12.778302 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:09:16.309644 + +[25] Log opened at 2024-11-12 17:09:17.838367 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:09:18.913372 + +[24] Log opened at 2024-11-12 17:09:25.505147 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:09:26.604640 + +[34] Log opened at 2024-11-12 17:10:56.816221 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:10:58.530487 + +[34] Log opened at 2024-11-12 17:10:58.722227 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:10:59.382874 + +[27] Log opened at 2024-11-12 17:10:59.746927 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-12 17:10:59.807031 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] Log opened at 2024-11-12 17:10:59.827503 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-12 17:10:59.830345 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:10:59.841331 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:11:00.795766 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:11:01.424113 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:11:01.795757 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:11:02.331741 + +[27] Log opened at 2024-11-12 17:11:02.353694 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[39] Log opened at 2024-11-12 17:11:02.354803 +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:11:02.354802 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-12 17:11:02.692634 + +[37] Log opened at 2024-11-12 17:11:02.731862 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:11:03.458165 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:11:03.813791 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:11:04.181821 + +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[37] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[37] Log closed at 2024-11-12 17:11:04.915023 + +[27] Log opened at 2024-11-12 17:11:04.988515 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:11:08.261008 + +[27] Log opened at 2024-11-12 17:11:11.015017 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:11:12.114347 + +[27] Log opened at 2024-11-12 17:11:15.243643 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:11:16.390293 + +[25] Log opened at 2024-11-12 17:11:38.238274 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:11:43.640195 + +[25] Log opened at 2024-11-12 17:11:46.698019 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:11:52.950875 + +[36] Log opened at 2024-11-12 17:13:09.262494 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:13:10.970990 + +[36] Log opened at 2024-11-12 17:13:11.149519 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:13:11.812950 + +[31] Log opened at 2024-11-12 17:13:12.182346 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-12 17:13:12.233938 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:13:12.259877 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-12 17:13:12.273083 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:13:12.281420 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:13:13.215432 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:13:13.847699 + +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:13:14.344627 + +[31] Log opened at 2024-11-12 17:13:14.359336 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] Log opened at 2024-11-12 17:13:14.361613 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-12 17:13:14.364397 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:13:14.729221 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:13:15.075061 + +[40] Log opened at 2024-11-12 17:13:15.114321 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:13:15.424260 + +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:13:15.796266 + +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:13:16.167364 + +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:13:16.861533 + +[34] Log opened at 2024-11-12 17:13:16.904201 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] Log opened at 2024-11-12 17:13:16.967252 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[34] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[34] Log closed at 2024-11-12 17:13:18.030340 + +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[31] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-11-12 17:13:22.710740 + +[27] Log opened at 2024-11-12 17:13:55.111469 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:13:56.242916 + +[24] Log opened at 2024-11-12 17:15:06.233521 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:15:07.900450 + +[24] Log opened at 2024-11-12 17:15:08.111930 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:15:08.776397 + +[39] Log opened at 2024-11-12 17:15:09.161126 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-12 17:15:09.217427 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:15:09.238715 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:15:09.257338 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-12 17:15:09.258061 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:15:10.223757 + +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:15:10.836987 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:15:11.168993 + +[39] Log opened at 2024-11-12 17:15:11.207252 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:15:11.543543 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:15:12.042323 + +[41] Log opened at 2024-11-12 17:15:12.061475 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] Log opened at 2024-11-12 17:15:12.061540 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-11-12 17:15:12.062180 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:15:12.748120 + +[39] Log opened at 2024-11-12 17:15:12.775229 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:15:12.824411 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:15:13.130790 + +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:15:13.479963 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:15:13.834818 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:15:14.222590 + +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:15:19.170072 + +[40] Log opened at 2024-11-12 17:15:23.035322 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:15:24.101565 + +[40] Log opened at 2024-11-12 17:15:27.517334 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:15:28.622780 + +[40] Log opened at 2024-11-12 17:15:28.644227 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:15:34.278737 + +[24] Log opened at 2024-11-12 17:22:20.638534 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:22:22.358078 + +[24] Log opened at 2024-11-12 17:22:22.561290 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:22:23.223136 + +[33] Log opened at 2024-11-12 17:22:23.613749 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-12 17:22:23.669528 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-12 17:22:23.694013 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:22:23.703982 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-12 17:22:23.713008 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:22:24.667109 + +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:22:25.312326 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:22:25.636256 + +[33] Log opened at 2024-11-12 17:22:25.673504 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:22:26.020078 + +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:22:26.540021 + +[40] Log opened at 2024-11-12 17:22:26.553764 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-11-12 17:22:26.556131 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-12 17:22:26.557088 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:22:27.220476 + +[33] Log opened at 2024-11-12 17:22:27.246594 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-11-12 17:22:27.293612 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:22:27.654084 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:22:28.053057 + +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] Log closed at 2024-11-12 17:22:28.416572 + +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:22:28.811331 + +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:22:33.513052 + +[25] Log opened at 2024-11-12 17:24:06.486099 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:24:08.184221 + +[25] Log opened at 2024-11-12 17:24:08.386900 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:24:09.045016 + +[24] Log opened at 2024-11-12 17:24:09.448845 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-12 17:24:09.530591 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:24:09.542076 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:24:09.558361 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-12 17:24:09.566226 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:24:10.509905 + +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:24:11.109735 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:24:11.469393 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:24:11.808437 + +[24] Log opened at 2024-11-12 17:24:11.842488 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:24:12.334206 + +[40] Log opened at 2024-11-12 17:24:12.350929 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] Log opened at 2024-11-12 17:24:12.352611 +[42] Log opened at 2024-11-12 17:24:12.352729 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:24:13.208719 + +[24] Log opened at 2024-11-12 17:24:13.245693 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-12 17:24:13.290690 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:24:13.560307 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:24:13.932705 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:24:14.302690 + +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-11-12 17:24:14.691669 + +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:24:19.201032 + +[43] Log opened at 2024-11-12 17:24:22.190496 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:24:23.249627 + +[43] Log opened at 2024-11-12 17:24:26.845139 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:24:27.940476 + +[43] Log opened at 2024-11-12 17:24:27.955462 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:24:33.557706 + +[33] Log opened at 2024-11-12 17:25:08.124247 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:25:09.233455 + +[36] Log opened at 2024-11-12 17:25:48.811996 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:25:55.922988 + +[27] Log opened at 2024-11-12 17:25:57.799368 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:25:59.474751 + +[27] Log opened at 2024-11-12 17:25:59.673886 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:26:00.334511 + +[41] Log opened at 2024-11-12 17:26:00.831642 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:26:00.856498 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:26:00.867417 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:26:00.871033 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:26:00.871270 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:26:01.859580 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:26:02.495856 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:26:02.882701 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:26:03.216047 + +[44] Log opened at 2024-11-12 17:26:03.251337 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:26:03.725533 + +[41] Log opened at 2024-11-12 17:26:03.741238 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:26:03.742553 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[25] Log opened at 2024-11-12 17:26:03.742642 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:26:04.640782 + +[44] Log opened at 2024-11-12 17:26:04.670594 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:26:04.998960 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:26:05.382508 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:26:05.732688 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:26:06.139480 + +[43] Log opened at 2024-11-12 17:26:11.381746 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:26:17.281902 + +[43] Log opened at 2024-11-12 17:26:22.049253 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:26:23.106726 + +[33] Log opened at 2024-11-12 17:26:32.305707 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:26:33.398420 + +[33] Log opened at 2024-11-12 17:26:38.138546 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-11-12 17:26:43.748384 + +[40] Log opened at 2024-11-12 17:30:50.331878 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:30:51.997651 + +[40] Log opened at 2024-11-12 17:30:52.189404 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:30:52.847772 + +[41] Log opened at 2024-11-12 17:30:53.257238 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] Log opened at 2024-11-12 17:30:53.334815 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-12 17:30:53.352679 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:30:53.355465 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:30:53.368410 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:30:54.304438 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:30:54.931976 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:30:55.299397 + +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:30:55.623887 + +[41] Log opened at 2024-11-12 17:30:55.665808 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:30:56.125922 + +[43] Log opened at 2024-11-12 17:30:56.148064 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[25] Log opened at 2024-11-12 17:30:56.147503 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] Log opened at 2024-11-12 17:30:56.149742 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:30:57.033095 + +[41] Log opened at 2024-11-12 17:30:57.066255 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:30:57.108811 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:30:57.393362 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:30:57.759060 + +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[43] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[43] Log closed at 2024-11-12 17:30:58.147960 + +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:30:58.538976 + +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:31:03.023269 + +[36] Log opened at 2024-11-12 17:33:19.906908 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:33:26.376352 + +[45] Log opened at 2024-11-12 17:33:28.759860 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:33:30.473360 + +[45] Log opened at 2024-11-12 17:33:30.679940 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:33:31.336183 + +[44] Log opened at 2024-11-12 17:33:31.919778 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:33:31.939261 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] Log opened at 2024-11-12 17:33:31.990876 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:33:31.992455 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:33:31.992761 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:33:32.999517 + +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:33:33.658684 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:33:34.137246 + +[25] Log opened at 2024-11-12 17:33:34.157646 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[44] Log opened at 2024-11-12 17:33:34.157647 +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[27] Log opened at 2024-11-12 17:33:34.157646 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:33:34.520854 + +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-11-12 17:33:34.886857 + +[46] Log opened at 2024-11-12 17:33:34.923861 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:33:35.269772 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:33:35.623793 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:33:35.983590 + +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[46] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[46] Log closed at 2024-11-12 17:33:36.708773 + +[44] Log opened at 2024-11-12 17:33:36.793821 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:33:42.384367 + +[41] Log opened at 2024-11-12 17:33:58.747420 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:33:59.840898 + +[42] Log opened at 2024-11-12 17:34:06.405555 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:07.524878 + +[42] Log opened at 2024-11-12 17:34:10.117258 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:16.102376 + +[36] Log opened at 2024-11-12 17:34:18.632667 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:34:20.332712 + +[36] Log opened at 2024-11-12 17:34:20.557257 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[36] Log closed at 2024-11-12 17:34:21.219145 + +[45] Log opened at 2024-11-12 17:34:21.787996 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:34:21.793816 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:34:21.812594 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:34:21.813561 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-11-12 17:34:21.881652 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:34:22.847442 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:34:23.483478 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:34:23.811792 + +[45] Log opened at 2024-11-12 17:34:23.845683 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:34:24.296388 + +[27] Log opened at 2024-11-12 17:34:24.311435 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:34:24.313999 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:34:24.316963 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-11-12 17:34:24.678889 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:34:25.350709 + +[47] Log opened at 2024-11-12 17:34:25.385677 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-12 17:34:25.446238 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:34:25.706818 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:34:26.069182 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:34:26.432286 + +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-11-12 17:34:26.825181 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:34:31.624047 + +[44] Log opened at 2024-11-12 17:34:39.669560 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:34:40.891925 + +[44] Log opened at 2024-11-12 17:34:40.954474 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:34:41.599760 + +[41] Log opened at 2024-11-12 17:34:41.751367 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:34:41.765670 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-12 17:34:41.858020 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:42.723762 + +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:34:43.340855 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-11-12 17:34:43.760638 + +[42] Log opened at 2024-11-12 17:34:46.080812 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:50.653870 + +[42] Log opened at 2024-11-12 17:34:50.798114 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-12 17:34:50.801722 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[47] Log opened at 2024-11-12 17:34:50.801722 +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:34:50.801722 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:34:50.801757 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[27] Log opened at 2024-11-12 17:34:50.801722 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:51.469272 + +[42] Log opened at 2024-11-12 17:34:51.470848 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:34:51.892956 + +[45] Log opened at 2024-11-12 17:34:51.895210 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:34:52.312187 + +[27] Log opened at 2024-11-12 17:34:52.314673 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:34:52.658203 + +[25] Log opened at 2024-11-12 17:34:52.660997 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-11-12 17:34:52.997172 + +[47] Log opened at 2024-11-12 17:34:52.999343 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:34:53.339866 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:53.686995 + +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:34:54.030166 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:34:54.374653 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:34:54.696975 + +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-11-12 17:34:55.034324 + +[42] Log opened at 2024-11-12 17:34:55.114158 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:34:55.126465 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:34:55.184659 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-11-12 17:34:55.195046 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-12 17:34:55.295679 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:34:55.299057 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:34:56.446609 + +[40] Log opened at 2024-11-12 17:34:56.448946 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:34:57.012952 + +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-11-12 17:34:58.118435 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:34:58.666952 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:34:59.046897 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:34:59.563751 + +[42] Log opened at 2024-11-12 17:34:59.576872 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:34:59.578513 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] Log opened at 2024-11-12 17:34:59.579168 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:35:00.294154 + +[40] Log opened at 2024-11-12 17:35:00.306927 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:35:00.661263 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:35:01.021421 + +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[47] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[47] Log closed at 2024-11-12 17:35:01.398808 + +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:35:01.796549 + +[40] Log opened at 2024-11-12 17:35:01.809413 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:35:02.885051 + +[44] Log opened at 2024-11-12 17:35:09.764943 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:35:10.828090 + +[41] Log opened at 2024-11-12 17:35:15.917985 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:35:17.024867 + +[41] Log opened at 2024-11-12 17:35:17.041227 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:35:22.673865 + +[41] Log opened at 2024-11-12 17:35:26.735917 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:35:32.977916 + +[48] Log opened at 2024-11-12 17:35:37.799212 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-11-12 17:35:42.380162 + +[48] Log opened at 2024-11-12 17:35:42.521285 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] Log opened at 2024-11-12 17:35:42.579697 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:35:42.580991 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:35:42.583840 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:35:42.585383 +[45] Log opened at 2024-11-12 17:35:42.585418 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-11-12 17:35:43.171038 + +[48] Log opened at 2024-11-12 17:35:43.173115 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:35:43.622621 + +[42] Log opened at 2024-11-12 17:35:43.625240 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:35:43.954083 + +[25] Log opened at 2024-11-12 17:35:43.956401 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:35:44.379534 + +[49] Log opened at 2024-11-12 17:35:44.381971 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:35:44.732199 + +[27] Log opened at 2024-11-12 17:35:44.734670 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:35:45.077785 + +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-11-12 17:35:45.399145 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:35:45.741582 + +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:35:46.092440 + +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:35:46.418336 + +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:35:46.750820 + +[45] Log opened at 2024-11-12 17:35:46.844309 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:35:46.851719 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:35:46.931942 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:35:46.941532 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log opened at 2024-11-12 17:35:47.254745 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-12 17:35:47.266903 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:35:48.141507 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:35:48.791860 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:35:49.335083 + +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:35:50.493607 + +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:35:51.003864 + +[45] Log opened at 2024-11-12 17:35:51.024270 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:35:51.025873 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] Log opened at 2024-11-12 17:35:51.026537 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-11-12 17:35:51.397216 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:35:52.059725 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:35:52.427852 + +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:35:52.793298 + +[50] Log opened at 2024-11-12 17:38:40.843143 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-11-12 17:38:46.825051 + +[27] Log opened at 2024-11-12 17:38:52.111559 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:38:53.315757 + +[49] Log opened at 2024-11-12 17:38:53.391657 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:38:54.040900 + +[49] Log opened at 2024-11-12 17:38:54.159955 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] Log opened at 2024-11-12 17:38:54.172158 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] Log opened at 2024-11-12 17:38:54.319180 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[27] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-11-12 17:38:55.101566 + +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:38:55.706653 + +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[48] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[48] Log closed at 2024-11-12 17:38:56.116067 + +[25] Log opened at 2024-11-12 17:39:03.702434 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:39:05.483562 + +[25] Log opened at 2024-11-12 17:39:05.557805 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:39:06.202895 + +[42] Log opened at 2024-11-12 17:39:06.318788 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:39:06.325829 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-12 17:39:06.410901 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] Log opened at 2024-11-12 17:39:06.426861 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:39:07.285196 + +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:39:07.908672 + +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:39:08.323010 + +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:39:08.747900 + +[42] Log opened at 2024-11-12 17:39:11.232725 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:39:12.354207 + +[42] Log opened at 2024-11-12 17:39:14.088157 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:39:15.211501 + +[44] Log opened at 2024-11-12 17:39:21.929997 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:39:23.049760 + +[44] Log opened at 2024-11-12 17:39:24.000364 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[44] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[44] Log closed at 2024-11-12 17:39:25.065821 + +[41] Log opened at 2024-11-12 17:39:32.495407 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:39:33.634667 + +[41] Log opened at 2024-11-12 17:39:38.625358 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:39:39.775938 + +[41] Log opened at 2024-11-12 17:39:40.772683 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[41] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[41] Log closed at 2024-11-12 17:39:41.933971 + +[50] Log opened at 2024-11-12 17:39:47.986317 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-11-12 17:39:49.090732 + +[50] Log opened at 2024-11-12 17:39:50.085011 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[50] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[50] Log closed at 2024-11-12 17:39:51.178268 + +[49] Log opened at 2024-11-12 17:45:20.396085 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:45:22.197143 + +[49] Log opened at 2024-11-12 17:45:22.295097 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[49] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[49] Log closed at 2024-11-12 17:45:22.948869 + +[40] Log opened at 2024-11-12 17:45:23.497990 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] Log opened at 2024-11-12 17:45:23.507750 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] Log opened at 2024-11-12 17:45:23.692476 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log opened at 2024-11-12 17:45:23.719348 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[45] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[45] Log closed at 2024-11-12 17:45:24.478227 + +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:45:25.053318 + +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[42] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[42] Log closed at 2024-11-12 17:45:25.441663 + +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[25] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-11-12 17:45:25.862422 + +[40] Log opened at 2024-11-12 17:45:29.603426 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:45:30.718998 + +[40] Log opened at 2024-11-12 17:45:32.758765 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:45:33.911126 + +[40] Log opened at 2024-11-12 17:45:35.046507 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:45:36.140261 + +[40] Log opened at 2024-11-12 17:45:36.758630 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:45:37.859259 + +[40] Log opened at 2024-11-12 17:45:41.255538 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[40] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] Log closed at 2024-11-12 17:45:42.379461 +