From e159ac87620bb006899f02e7921d6c8b294d224f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 12 Nov 2024 18:46:16 +0100 Subject: [PATCH 1/5] arreglado bug en direcciones de envio. tarifas envio ordenables por 3 columnas --- .../Tarifas/Tarifasenviosprecios.php | 375 +- .../pages/presupuestoCliente/direcciones.js | 37 +- .../presupuestoCliente/presupuestoCliente.js | 17 +- xdebug.log | 3280 +++++++++++++++++ 4 files changed, 3539 insertions(+), 170 deletions(-) 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(`
- El total de unidades enviadas no se corresponde con las unidades del pedido + El total de unidades enviadas no puede ser mayor que la tirada seleccionada
`); 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 + From 4400695dd7982ff72b3cac4ed306660215f0380d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 12 Nov 2024 18:58:11 +0100 Subject: [PATCH 2/5] borrado xdebug y cambiado gitignore --- .gitignore | 2 +- xdebug.log | 14957 -------------------------------------------------- 2 files changed, 1 insertion(+), 14958 deletions(-) delete mode 100644 xdebug.log diff --git a/.gitignore b/.gitignore index 2740fefd..1d34c84e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ ci4/.env .vscode/ -xdebug.log \ No newline at end of file +*xdebug*.log* \ No newline at end of file diff --git a/xdebug.log b/xdebug.log deleted file mode 100644 index 670331f6..00000000 --- a/xdebug.log +++ /dev/null @@ -1,14957 +0,0 @@ -[25] Log opened at 2024-11-07 19:18:16.252892 -[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] [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-07 19:18:17.804301 - -[27] Log opened at 2024-11-07 19:18:17.941917 -[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] [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-07 19:18:18.850160 - -[22] Log opened at 2024-11-08 13:44:08.630139 -[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-08 13:44:09.632565 - -[22] Log opened at 2024-11-08 13:44:09.643880 -[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-08 13:44:10.608976 - -[25] Log opened at 2024-11-08 13:44:10.721250 -[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-08 13:44:11.365908 - -[23] Log opened at 2024-11-08 13:44:11.491669 -[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-08 13:44:12.407170 - -[23] Log opened at 2024-11-08 13:44:13.153869 -[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-08 13:44:14.585896 - -[23] Log opened at 2024-11-08 13:44:14.595177 -[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-08 13:44:15.714266 - -[23] Log opened at 2024-11-08 13:44:15.797291 -[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-08 13:44:16.438504 - -[23] Log opened at 2024-11-08 13:44:16.516386 -[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] Log opened at 2024-11-08 13:44:16.535876 -[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. -[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). -[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-08 13:44:17.439125 - -[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-08 13:44:18.043469 - -[33] Log opened at 2024-11-08 13:44:24.458635 -[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-08 13:44:25.675197 - -[33] Log opened at 2024-11-08 13:44:25.750689 -[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-08 13:44:26.393906 - -[27] Log opened at 2024-11-08 13:44:26.513963 -[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-08 13:44:26.517007 -[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-08 13:44:26.608214 -[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] [Step 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-08 13:44:27.463288 - -[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-08 13:44:28.076407 - -[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-08 13:44:28.482353 - -[27] Log opened at 2024-11-08 13:44:32.233325 -[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-08 13:44:33.952294 - -[27] Log opened at 2024-11-08 13:44:34.030268 -[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-08 13:44:34.677859 - -[28] Log opened at 2024-11-08 13:44:34.874904 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-11-08 13:44:34.877854 -[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. -[35] Log opened at 2024-11-08 13:44:34.900981 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-11-08 13:44:34.957259 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-11-08 13:44:34.963347 -[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. -[28] [Step 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). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step 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). -[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-08 13:44:35.911007 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-11-08 13:44:36.513211 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 13:44:36.839269 - -[28] Log opened at 2024-11-08 13:44:36.885954 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [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. -[28] [Step 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-08 13:44:37.210355 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-08 13:44:37.711354 - -[23] Log opened at 2024-11-08 13:44:37.722424 -[35] Log opened at 2024-11-08 13:44:37.722424 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[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. -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] Log opened at 2024-11-08 13:44:37.722772 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [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). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [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. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-11-08 13:44:38.498946 - -[28] Log opened at 2024-11-08 13:44:38.585550 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [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. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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-08 13:44:38.860812 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 13:44:39.228492 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-08 13:44:39.590636 - -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] Log closed at 2024-11-08 13:44:42.568989 - -[22] Log opened at 2024-11-08 13:44:47.953210 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Configuracion/Maquinastarifasimpresion.php -n 311 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 453 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1495 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1896 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 13:44:51.159077 - -[33] Log opened at 2024-11-08 13:45:37.227099 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1728 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 10 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 11 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 12 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 13 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 15 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 16 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 21 -n "$input_data[\"papel_generico\"]" -p 0 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- step_into -i 22 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 23 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 24 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 25 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 26 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 27 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 28 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 29 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZWQ0N2IyMmQwMTgwYmE5ZGRlZDQ2OGFlZTBkMTE4MWEyMGM1N2Q1NjcwYWI3YjhlYTRjZDg4ZDYyZmUxNTg3ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lckNvbXBhcmFkb3JQbGFuYQ== -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 32 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 33 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 34 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 35 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 37 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 38 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 39 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_remove -i 40 -d 330005 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 41 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 42 -n "$datosPedido" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 43 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 44 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 45 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 46 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 48 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 49 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 50 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 51 -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 13:47:00.058077 - -[34] Log opened at 2024-11-08 13:47:05.065344 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1728 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 11 -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 12 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 13 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 14 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 16 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 17 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 18 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_remove -i 19 -d 340001 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 20 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 21 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 22 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 23 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 24 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 26 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 27 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 28 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 29 -n "$papelimpresionmodel->getIdPapelesImpresionForPresupuesto" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 30 -n "$papel_generico" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 31 -n "$gramaje" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 32 -n "$opciones_papel" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 34 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 35 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 36 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 37 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 38 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 39 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 40 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 41 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 42 -n "$builder->orderBy" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 43 -n "$builder" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 44 -n "$builder->QBSelect" -p 0 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 45 -n "$builder->db" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 46 -n "$papel_generico_id" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 47 -n "$gramaje" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 48 -n "$options" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 49 -n "$rotativa" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 50 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 51 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 52 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 53 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 55 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 56 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 57 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 58 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 59 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 64 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 66 -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 13:49:41.369382 - -[24] Log opened at 2024-11-08 13:49:51.300075 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 11 -[24] [Step Debug] -> - -[24] [Step Debug] -> - -[24] Log closed at 2024-11-08 13:49:52.043747 - -[27] Log opened at 2024-11-08 13:49:52.082607 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 11 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 13:49:52.253675 - -[27] Log opened at 2024-11-08 13:49:52.518590 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[24] Log opened at 2024-11-08 13:49:52.521744 -[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] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[24] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[24] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[24] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[24] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[24] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[24] [Step Debug] -> - -[24] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[24] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[24] [Step Debug] -> - -[27] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[24] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[27] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[24] [Step Debug] -> - -[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[24] [Step Debug] -> - -[24] [Step Debug] <- run -i 11 -[27] [Step Debug] <- run -i 11 -[25] Log opened at 2024-11-08 13:49:52.631758 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 6 -[24] [Step Debug] -> - -[24] Log closed at 2024-11-08 13:49:52.967534 - -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 13:49:53.384655 - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 13:49:53.604201 - -[25] Log opened at 2024-11-08 13:49:55.815329 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 11 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 13:49:56.430603 - -[25] Log opened at 2024-11-08 13:49:57.052400 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 11 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 13:49:57.640531 - -[23] Log opened at 2024-11-08 13:50:11.840133 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[23] [Step Debug] -> - -[23] [Step Debug] -> - -[23] Log closed at 2024-11-08 13:50:13.039262 - -[23] Log opened at 2024-11-08 13:50:13.118360 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 11 -[23] [Step Debug] -> - -[23] Log closed at 2024-11-08 13:50:13.289762 - -[35] Log opened at 2024-11-08 13:50:13.396296 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[29] Log opened at 2024-11-08 13:50:13.403891 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] -> - -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[35] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[29] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[29] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[35] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 11 -[29] [Step Debug] <- run -i 11 -[28] Log opened at 2024-11-08 13:50:13.518429 -[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' -[28] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[28] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[28] [Step Debug] -> - -[28] [Step Debug] <- run -i 3 -[22] Log opened at 2024-11-08 13:50:13.538288 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[33] Log opened at 2024-11-08 13:50:13.551432 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[22] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[22] [Step Debug] <- breakpoint_set -i 7 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] -> - -[22] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[22] [Step Debug] -> - -[33] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[22] [Step Debug] -> - -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 13:50:13.888143 - -[35] [Step Debug] -> - -[35] Log closed at 2024-11-08 13:50:14.368888 - -[28] [Step Debug] -> - -[28] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[28] [Step Debug] -> - -[28] Log closed at 2024-11-08 13:50:14.607577 - -[22] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] -> - -[22] [Step Debug] -> - -[34] Log opened at 2024-11-08 13:52:14.910264 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 267 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[22] [Step Debug] <- run -i 13 -[34] [Step Debug] <- run -i 12 -[33] [Step Debug] <- run -i 13 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 13:52:15.586924 - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 13 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 14 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 15 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 18 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_remove -i 20 -d 340008 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_remove -i 22 -d 340013 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 25 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 26 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 31 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 32 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 33 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 34 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 35 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 36 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 38 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 39 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 40 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 41 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 42 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 43 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 44 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 46 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 47 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 48 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 49 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 50 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 51 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 52 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 54 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 55 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 56 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 57 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 58 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 59 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 64 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 66 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 67 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 68 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 69 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 70 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 71 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 72 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 73 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 74 -[34] [Step Debug] -> - -[34] [Step Debug] <- stack_get -i 75 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 76 -n "$linea" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 77 -n "$precio_unidad" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 78 -n "$data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- property_get -i 79 -n "$input_data" -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_names -i 80 -d 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- context_get -i 81 -d 0 -c 0 -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 82 -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 13:53:10.037986 - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_remove -i 14 -d 330012 -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 13:53:10.256935 - -[27] Log opened at 2024-11-08 13:53:42.119979 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 12 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 13:53:42.735368 - -[25] Log opened at 2024-11-08 13:53:46.937014 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 12 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 13:53:47.567741 - -[36] Log opened at 2024-11-08 13:53:51.362825 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 12 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 13:53:51.986042 - -[35] Log opened at 2024-11-08 13:54:20.131897 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 12 -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] Log closed at 2024-11-08 13:54:20.769662 - -[33] Log opened at 2024-11-08 13:54:27.533721 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 12 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 13:54:28.175717 - -[22] Log opened at 2024-11-08 13:58:54.157156 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 12 -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 13 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 14 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 15 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 18 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 19 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 20 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 21 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 22 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 23 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 25 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 26 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 27 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 28 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 29 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 30 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 32 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 33 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 34 -n "$sql->finalQueryString" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 35 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 36 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 38 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 39 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 41 -n "$data[0]" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 42 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 43 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 44 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 45 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 46 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 47 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 48 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 49 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 50 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 51 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 52 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 53 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 54 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 55 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 56 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 57 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 58 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 60 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 61 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 62 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 63 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 64 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 65 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 66 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 67 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 68 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 69 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 70 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 71 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 72 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 73 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 74 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 75 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 76 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 77 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 78 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 79 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 80 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 81 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 82 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 83 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 84 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 85 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 86 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 87 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 88 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 89 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 90 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 91 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 92 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 93 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 94 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 95 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 96 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 97 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 98 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 99 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 100 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 101 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 102 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 103 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 104 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 105 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 106 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 107 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 108 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 109 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 110 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 111 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 112 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 113 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 114 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 115 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 116 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 117 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 118 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 119 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 120 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 121 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 122 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 123 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 124 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 125 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 126 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 127 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 128 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 129 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 130 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 131 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 132 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 133 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 134 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 135 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 136 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 137 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 138 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 139 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 140 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 141 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 142 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 143 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 144 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 145 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 146 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 147 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 148 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 149 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 150 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 151 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 152 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 153 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 154 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 155 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 156 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 157 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 158 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 159 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 160 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 161 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 162 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 163 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 164 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 165 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 166 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 167 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 168 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 169 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 170 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 171 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 172 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 173 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 174 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 175 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 176 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 177 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 178 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 179 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 180 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 181 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 182 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 183 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 184 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 185 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 186 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 187 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 188 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 189 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 190 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 191 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 192 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 193 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 194 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 195 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 196 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 197 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 198 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 199 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 200 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 201 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 202 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 203 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 204 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 205 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 206 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 207 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 208 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 209 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 210 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 211 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 212 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 213 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 214 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 215 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 216 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 217 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 218 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 219 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 220 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 221 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 222 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 223 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 224 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 225 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 226 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 227 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 228 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 229 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 230 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 231 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 232 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 233 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 234 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 235 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 236 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 237 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 238 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 239 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 240 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 241 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 242 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 243 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 244 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 245 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 246 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 247 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 248 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 249 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 250 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 251 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 252 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 253 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 254 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 255 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 256 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 257 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 258 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 259 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 260 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 261 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 262 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 263 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 264 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 265 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 266 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 267 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 268 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 269 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 270 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 271 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 272 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 273 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 274 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 275 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 276 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 277 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 278 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 279 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 280 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 281 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 282 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 283 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 284 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 285 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 286 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 287 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 288 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 289 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 290 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 291 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 292 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 293 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 294 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 295 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 296 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 297 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 298 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 299 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 300 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 301 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 302 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 303 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 304 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 305 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 306 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 307 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 308 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 309 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 310 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 311 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 312 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 313 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 314 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 315 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 316 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 317 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 318 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 319 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 320 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 321 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 322 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 323 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 324 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 325 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 326 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 327 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 328 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 329 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 330 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 331 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 332 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 333 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 334 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 335 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 336 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 337 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 338 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 339 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 340 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 341 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 342 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 343 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 344 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 345 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 346 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 347 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 348 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 349 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 350 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 351 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 352 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 353 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 354 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 355 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 356 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 357 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 358 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 359 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 360 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 361 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 362 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 363 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 364 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 365 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 366 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 367 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 368 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 369 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 370 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 371 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 372 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 373 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 374 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 375 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 376 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 377 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 378 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 379 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 380 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 381 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 382 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 383 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 384 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 385 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 386 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 387 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 388 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 389 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 390 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 391 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 392 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 393 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 394 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 395 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 396 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 397 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 398 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 399 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 400 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 401 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 402 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 403 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 404 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 405 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 406 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 407 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 408 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 409 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 410 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 411 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 412 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 413 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 414 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 415 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 416 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 417 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 418 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 419 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 420 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 421 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 422 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 423 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 424 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 425 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 426 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 427 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 428 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 429 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 430 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 431 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 432 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 433 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 434 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 435 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 436 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 437 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 438 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 439 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 440 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 441 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 442 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 443 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 444 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 445 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 446 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 447 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 448 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 449 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 450 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 451 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 452 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 453 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 454 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 455 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 456 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 457 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 458 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 459 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 460 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 461 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 462 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 463 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 464 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 465 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 466 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 467 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 468 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 469 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 470 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 471 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 472 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 473 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 474 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 475 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 476 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 477 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 478 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 479 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 480 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 481 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 482 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 483 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 484 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 485 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 486 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 487 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 488 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 489 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 490 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 491 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 492 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 493 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 494 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 495 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 496 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 497 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 498 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 499 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 500 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 501 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 502 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 503 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 504 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 505 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 506 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 507 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 508 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 509 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 510 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 511 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 512 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 513 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 514 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 515 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 516 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 517 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 518 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 519 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 520 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 521 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 522 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 523 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 524 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 525 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 526 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 527 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 528 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 529 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 530 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 531 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 532 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 533 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 534 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 535 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 536 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 537 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 538 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 539 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 540 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 541 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 542 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 543 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 544 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 545 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 546 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 547 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 548 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 549 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 550 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 551 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 552 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 553 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 554 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 555 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 556 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 557 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- step_over -i 558 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 559 -[22] [Step Debug] -> - -[22] [Step Debug] <- stack_get -i 560 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 561 -n "$linea" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 562 -n "$precio_unidad" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 563 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 564 -n "$input_data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 565 -n "$sql" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- property_get -i 566 -n "$data" -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_names -i 567 -d 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- context_get -i 568 -d 0 -c 0 -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 569 -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 14:02:35.531929 - -[27] Log opened at 2024-11-08 14:02:45.910848 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 269 -- KGJvb2wpKCRndWFyZGFzPT0xKQ== -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 12 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 13 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 14 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 15 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 17 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 18 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 20 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 21 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 22 -n "$papel_generico" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 24 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 25 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 26 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 27 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 28 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 29 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 30 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 32 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 33 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_remove -i 34 -d 270017 -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 35 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 36 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 43 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 45 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 46 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 47 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 48 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 49 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 50 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 51 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 52 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 53 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 54 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 55 -n "$coste_guardas" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- step_over -i 56 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 57 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 58 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 59 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 61 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 62 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 63 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 64 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 65 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- step_over -i 66 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 67 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 68 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 69 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 70 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 72 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 73 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 74 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 75 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 76 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- step_over -i 77 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 78 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 79 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 80 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 81 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 82 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 83 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 84 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 85 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 86 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- step_over -i 87 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 88 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 89 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 90 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 91 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 92 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 93 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 94 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 95 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 96 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- step_over -i 97 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 98 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 99 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 100 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 101 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 102 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 103 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 104 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 105 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 106 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 107 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 108 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 109 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[27] [Step Debug] -> - -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 110 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 111 -[27] [Step Debug] -> - -[27] [Step Debug] <- stack_get -i 112 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 113 -n "$linea" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 114 -n "$precio_unidad" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 115 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 116 -n "$input_data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 117 -n "$sql" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- property_get -i 118 -n "$data" -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_names -i 119 -d 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- context_get -i 120 -d 0 -c 0 -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 121 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 14:04:09.777932 - -[27] Log opened at 2024-11-08 14:04:14.273462 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 15 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 14:04:14.945446 - -[25] Log opened at 2024-11-08 14:04:15.005539 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 15 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:04:15.189879 - -[25] Log opened at 2024-11-08 14:04:15.415466 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[36] Log opened at 2024-11-08 14:04:15.419288 -[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] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[36] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[25] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[25] [Step Debug] <- run -i 20 -[36] [Step Debug] <- run -i 20 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:04:15.913201 - -[36] Log opened at 2024-11-08 14:04:16.182452 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:04:16.330141 - -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:04:16.885727 - -[23] Log opened at 2024-11-08 14:04:24.851171 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[23] [Step Debug] -> - -[23] [Step Debug] <- run -i 15 -[23] [Step Debug] -> - -[23] Log closed at 2024-11-08 14:04:25.519538 - -[29] Log opened at 2024-11-08 14:04:25.578284 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 15 -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 14:04:25.764078 - -[29] Log opened at 2024-11-08 14:04:25.854155 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[23] Log opened at 2024-11-08 14:04:25.870243 -[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. -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[29] [Step Debug] -> - -[23] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[23] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[35] Log opened at 2024-11-08 14:04:25.935076 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[23] [Step Debug] <- run -i 6 -[35] [Step Debug] <- run -i 6 -[29] [Step Debug] <- run -i 15 -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[23] [Step Debug] -> - -[23] Log closed at 2024-11-08 14:04:26.317398 - -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 14:04:26.766696 - -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[35] [Step Debug] -> - -[35] Log closed at 2024-11-08 14:04:26.948978 - -[33] Log opened at 2024-11-08 14:09:29.950046 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 15 -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 14:09:30.677552 - -[34] Log opened at 2024-11-08 14:09:30.755674 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 15 -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 14:09:30.942081 - -[34] Log opened at 2024-11-08 14:09:31.099285 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[33] Log opened at 2024-11-08 14:09:31.102746 -[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. -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[33] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] -> - -[34] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[34] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[33] [Step Debug] -> - -[34] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[33] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[34] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[34] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[33] [Step Debug] -> - -[34] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] -> - -[22] Log opened at 2024-11-08 14:09:31.193471 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[33] [Step Debug] <- run -i 20 -[22] [Step Debug] <- run -i 6 -[34] [Step Debug] <- run -i 20 -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 14:09:31.610590 - -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 14:09:32.010675 - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 14:09:32.224193 - -[27] Log opened at 2024-11-08 14:09:46.745217 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 15 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 14:09:48.037743 - -[27] Log opened at 2024-11-08 14:09:48.111751 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 15 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 14:09:48.298272 - -[25] Log opened at 2024-11-08 14:09:48.406194 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[36] Log opened at 2024-11-08 14:09:48.413166 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[36] [Step Debug] -> - -[23] Log opened at 2024-11-08 14:09:48.527905 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[25] [Step Debug] <- run -i 15 -[23] [Step Debug] <- run -i 6 -[36] [Step Debug] <- run -i 15 -[29] Log opened at 2024-11-08 14:09:48.545990 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[35] Log opened at 2024-11-08 14:09:48.568335 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] <- breakpoint_set -i 6 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[29] [Step Debug] <- run -i 10 -[35] [Step Debug] <- run -i 6 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:09:49.052318 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[23] [Step Debug] -> - -[23] Log closed at 2024-11-08 14:09:49.231083 - -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:09:49.700583 - -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[35] [Step Debug] -> - -[35] Log closed at 2024-11-08 14:09:49.895744 - -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 14:09:50.099111 - -[36] Log opened at 2024-11-08 14:09:50.584506 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:09:51.780016 - -[36] Log opened at 2024-11-08 14:09:51.861713 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:09:52.041582 - -[36] Log opened at 2024-11-08 14:09:52.143044 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[25] Log opened at 2024-11-08 14:09:52.151042 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 6 -n extended_properties -v 1 -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[36] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[25] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[23] Log opened at 2024-11-08 14:09:52.255004 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[23] [Step Debug] -> - -[23] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[23] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[23] [Step Debug] <- run -i 6 -[25] [Step Debug] <- run -i 15 -[35] Log opened at 2024-11-08 14:09:52.270718 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[29] Log opened at 2024-11-08 14:09:52.286765 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[35] [Step Debug] <- run -i 6 -[29] [Step Debug] <- run -i 6 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:09:52.736179 - -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:09:53.150525 - -[23] [Step Debug] -> - -[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[23] [Step Debug] -> - -[23] Log closed at 2024-11-08 14:09:53.352539 - -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[35] [Step Debug] -> - -[35] Log closed at 2024-11-08 14:09:53.549305 - -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 14:09:53.757876 - -[36] Log opened at 2024-11-08 14:09:55.474560 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:09:56.105995 - -[33] Log opened at 2024-11-08 14:10:04.801148 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 15 -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 14:10:05.402704 - -[22] Log opened at 2024-11-08 14:11:12.540955 -[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. -[34] Log opened at 2024-11-08 14:11:12.540955 -[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. -[22] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[22] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[22] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[34] [Step Debug] -> - -[22] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] -> - -[22] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[34] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[22] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[22] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[22] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[22] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 19 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[34] [Step Debug] -> - -[22] [Step Debug] <- run -i 20 -[34] [Step Debug] <- run -i 20 -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 14:11:13.161948 - -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 14:11:13.419879 - -[27] Log opened at 2024-11-08 14:12:00.552151 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- run -i 15 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 14:12:01.177027 - -[25] Log opened at 2024-11-08 14:12:16.921264 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1745 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1793 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 15 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- stack_get -i 16 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_names -i 23 -d 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 25 -[25] [Step Debug] -> - -[25] [Step Debug] <- stack_get -i 26 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 31 -n "$sql" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_names -i 33 -d 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 35 -[25] [Step Debug] -> - -[25] [Step Debug] <- stack_get -i 36 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_names -i 43 -d 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 45 -d 250054 -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 46 -[25] [Step Debug] -> - -[25] [Step Debug] <- stack_get -i 47 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 48 -n "$linea" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 49 -n "$precio_unidad" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 50 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 51 -n "$input_data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 52 -n "$sql" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_names -i 54 -d 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- context_get -i 55 -d 0 -c 0 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_remove -i 56 -d 250055 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 57 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[25] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 58 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:12:38.269531 - -[35] Log opened at 2024-11-08 14:13:36.659835 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 314 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 11 -t conditional -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1761 -- KGJvb2wpKCR1c289PSJndWFyZGFzIik= -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 15 -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] <- stack_get -i 16 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_names -i 23 -d 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_remove -i 25 -d 350017 -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 26 -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] <- stack_get -i 27 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 28 -n "$linea" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 29 -n "$precio_unidad" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 32 -n "$sql" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_names -i 34 -d 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 36 -n "$modelTarifa->getTarifaPresupuestoEncuadernacion" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 37 -n "$tarifa" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 38 -[35] [Step Debug] -> - -[35] [Step Debug] <- stack_get -i 39 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 40 -n "$linea" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 41 -n "$precio_unidad" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 43 -n "$input_data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 44 -n "$sql" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 45 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_names -i 46 -d 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_get -i 47 -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 48 -n "$tarifa" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 49 -n "$paginas" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 50 -n "$tirada" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 51 -n "$ancho" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 52 -n "$alto" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- step_into -i 53 -[35] [Step Debug] -> - -[35] [Step Debug] <- stack_get -i 54 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 55 -n "$linea" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 56 -n "$precio_unidad" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 57 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 58 -n "$input_data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 59 -n "$sql" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 60 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_names -i 61 -d 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_get -i 62 -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 63 -n "$tarifa_id" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- step_over -i 64 -[35] [Step Debug] -> - -[35] [Step Debug] <- stack_get -i 65 -[35] [Step Debug] -> - -[35] [Step Debug] <- breakpoint_set -i 66 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[35] [Step Debug] -> - -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 67 -[35] [Step Debug] -> - -[35] [Step Debug] <- stack_get -i 68 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 69 -n "$linea" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 70 -n "$precio_unidad" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 71 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 72 -n "$input_data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 73 -n "$sql" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- property_get -i 74 -n "$data" -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_names -i 75 -d 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- context_get -i 76 -d 0 -c 0 -[35] [Step Debug] -> - -[35] [Step Debug] <- run -i 77 -[35] [Step Debug] -> - -[35] Log closed at 2024-11-08 14:15:41.672997 - -[29] Log opened at 2024-11-08 14:16:52.297775 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 15 -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] -> - -[29] [Step Debug] <- stack_get -i 16 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- context_names -i 23 -d 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 25 -[29] [Step Debug] -> - -[29] [Step Debug] <- stack_get -i 26 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 31 -n "$sql" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- context_names -i 33 -d 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 35 -[29] [Step Debug] -> - -[29] [Step Debug] <- stack_get -i 36 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- context_names -i 43 -d 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[29] [Step Debug] -> - -[29] [Step Debug] <- run -i 45 -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 14:17:00.223624 - -[36] Log opened at 2024-11-08 14:17:05.552814 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 16 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 23 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 25 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 26 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 27 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 28 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 29 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 30 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 31 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 32 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 33 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 34 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 35 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 36 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 37 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 38 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 40 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 41 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 42 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 43 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 44 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 45 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:17:14.431380 - -[36] Log opened at 2024-11-08 14:17:18.230466 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 15 -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 16 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 23 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 25 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 26 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 27 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 28 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 29 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 32 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 34 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 36 -n "$sql->finalQueryString" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 37 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 38 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 39 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 40 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 41 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 42 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 43 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 44 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 45 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 46 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 47 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 48 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 49 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 50 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 52 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 53 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 55 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 56 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 57 -n "$sql->finalQueryString" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 58 -[36] [Step Debug] -> - -[36] [Step Debug] <- stack_get -i 59 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 64 -n "$sql" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- property_get -i 65 -n "$data" -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_names -i 66 -d 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- context_get -i 67 -d 0 -c 0 -[36] [Step Debug] -> - -[36] [Step Debug] <- run -i 68 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:19:28.753651 - -[33] Log opened at 2024-11-08 14:19:33.631816 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[33] [Step Debug] -> - -[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 15 -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 16 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 17 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 18 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 19 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 20 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 21 -n "$sql" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 23 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 24 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 25 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 26 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 27 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 28 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 29 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 31 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 32 -n "$sql" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 33 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 34 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 35 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 36 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 37 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 38 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 39 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 40 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 41 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 42 -n "$sql" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 43 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 44 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 45 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 46 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 47 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 48 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 49 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 50 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 52 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 53 -n "$sql" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 54 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 55 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 56 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 57 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 58 -[33] [Step Debug] -> - -[33] [Step Debug] <- stack_get -i 59 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 60 -n "$linea" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 61 -n "$precio_unidad" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 62 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 63 -n "$input_data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 64 -n "$sql" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- property_get -i 65 -n "$data" -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_names -i 66 -d 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- context_get -i 67 -d 0 -c 0 -[33] [Step Debug] -> - -[33] [Step Debug] <- run -i 68 -[33] [Step Debug] -> - -[33] Log closed at 2024-11-08 14:19:48.704146 - -[34] Log opened at 2024-11-08 14:19:55.118032 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 15 -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 14:19:56.699057 - -[34] Log opened at 2024-11-08 14:19:59.581926 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[34] [Step Debug] -> - -[34] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[34] [Step Debug] -> - -[34] [Step Debug] <- run -i 15 -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] [Step Debug] -> - -[34] Log closed at 2024-11-08 14:20:04.451731 - -[22] Log opened at 2024-11-08 14:20:11.780942 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 14:20:12.419846 - -[22] Log opened at 2024-11-08 14:20:12.494883 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[22] [Step Debug] -> - -[22] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[22] [Step Debug] -> - -[22] [Step Debug] <- run -i 15 -[22] [Step Debug] -> - -[22] Log closed at 2024-11-08 14:20:12.660484 - -[37] Log opened at 2024-11-08 14:20:12.782660 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[37] [Step Debug] -> - -[37] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[37] [Step Debug] -> - -[27] Log opened at 2024-11-08 14:20:12.796647 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[27] [Step Debug] -> - -[37] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 2 -n max_children -v 100 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 -[27] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[37] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" -[27] [Step Debug] -> - -[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 12 -n notify_ok -v 1 -[27] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[37] [Step Debug] -> - -[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[37] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[27] [Step Debug] -> - -[27] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[27] [Step Debug] -> - -[25] Log opened at 2024-11-08 14:20:12.887885 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[37] [Step Debug] <- run -i 15 -[25] [Step Debug] <- run -i 6 -[27] [Step Debug] <- run -i 15 -[27] [Step Debug] -> - -[27] Log closed at 2024-11-08 14:20:13.324736 - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:20:13.568991 - -[37] [Step Debug] -> - -[37] Log closed at 2024-11-08 14:20:13.992546 - -[25] Log opened at 2024-11-08 14:20:17.316026 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 15 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:20:21.367529 - -[25] Log opened at 2024-11-08 14:20:21.444680 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[25] [Step Debug] -> - -[25] [Step Debug] <- run -i 15 -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:20:21.626589 - -[25] Log opened at 2024-11-08 14:20:21.720217 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[25] [Step Debug] -> - -[25] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[25] [Step Debug] -> - -[29] Log opened at 2024-11-08 14:20:21.728189 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[29] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[25] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 -[29] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1795 -[29] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1857 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[29] [Step Debug] -> - -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[25] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1944 -[25] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" -[25] [Step Debug] -> - -[29] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" -[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoEncuadernacionesModel.php -n 129 -[25] [Step Debug] -> - -[25] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[25] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Tarifas/TarifaEncuadernacionModel.php -n 159 -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" -[29] [Step Debug] -> - -[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 13 -n resolved_breakpoints -v 1 -[29] [Step Debug] -> - -[29] [Step Debug] <- feature_set -i 14 -n extended_properties -v 1 -[29] [Step Debug] -> - -[36] Log opened at 2024-11-08 14:20:21.810645 -[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 -[36] [Step Debug] -> - -[36] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 -[36] [Step Debug] -> - -[29] [Step Debug] <- run -i 15 -[36] [Step Debug] <- run -i 6 -[25] [Step Debug] <- run -i 15 -[29] [Step Debug] -> - -[29] Log closed at 2024-11-08 14:20:22.332017 - -[36] [Step Debug] -> - -[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Configuracion/PapelImpresionModel.php -n 312 -[36] [Step Debug] -> - -[36] Log closed at 2024-11-08 14:20:22.476656 - -[25] [Step Debug] -> - -[25] Log closed at 2024-11-08 14:20:22.971120 - -[22] Log opened at 2024-11-08 15:00:58.268790 -[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-08 15:00:59.351456 - -[22] Log opened at 2024-11-08 15:01:00.487509 -[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-08 15:01:04.410461 - -[35] Log opened at 2024-11-08 15:01:36.188047 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:01:40.429544 - -[23] Log opened at 2024-11-08 15:01:42.077485 -[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-08 15:01:43.757397 - -[23] Log opened at 2024-11-08 15:01:43.898078 -[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-08 15:01:44.560026 - -[36] Log opened at 2024-11-08 15:01:44.830545 -[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. -[37] Log opened at 2024-11-08 15:01:44.835736 -[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. -[29] Log opened at 2024-11-08 15:01:44.864997 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-11-08 15:01:44.918124 -[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-08 15:01:44.926787 -[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). -[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). -[29] [Step 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). -[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-08 15:01:45.821390 - -[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. -[29] [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-08 15:01:46.436014 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [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. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-08 15:01:46.778492 - -[36] Log opened at 2024-11-08 15:01:46.815517 -[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-08 15:01:47.159044 - -[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-08 15:01:47.659541 - -[37] Log opened at 2024-11-08 15:01:47.672655 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[29] Log opened at 2024-11-08 15:01:47.672655 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-11-08 15:01:47.673272 -[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. -[29] [Step 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). -[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] 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. -[37] [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-08 15:01:48.376025 - -[36] Log opened at 2024-11-08 15:01:48.449748 -[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. -[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. -[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). -[29] [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-08 15:01:48.733138 - -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [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. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-08 15:01:49.085244 - -[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-08 15:01:49.441066 - -[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-08 15:01:52.518760 - -[34] Log opened at 2024-11-08 15:02:03.750780 -[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-08 15:02:05.476291 - -[34] Log opened at 2024-11-08 15:02:05.591267 -[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-08 15:02:06.237206 - -[22] Log opened at 2024-11-08 15:02:06.440571 -[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. -[35] Log opened at 2024-11-08 15:02:06.448287 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[38] Log opened at 2024-11-08 15:02:06.480058 -[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. -[23] Log opened at 2024-11-08 15:02:06.525686 -[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. -[34] Log opened at 2024-11-08 15:02:06.539339 -[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. -[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). -[35] [Step 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). -[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). -[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). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:02:07.426790 - -[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. -[38] [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-08 15:02:08.075018 - -[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. -[34] [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-08 15:02:08.411831 - -[35] Log opened at 2024-11-08 15:02:08.455919 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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. -[35] [Step 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). -[34] Log closed at 2024-11-08 15:02:08.790450 - -[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. -[35] [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-08 15:02:09.339285 - -[22] Log opened at 2024-11-08 15:02:09.352300 -[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. -[23] Log opened at 2024-11-08 15:02:09.352995 -[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. -[38] Log opened at 2024-11-08 15:02:09.354013 -[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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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). -[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). -[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). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:02:09.921921 - -[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. -[38] [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-08 15:02:10.451822 - -[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. -[23] [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-08 15:02:10.809255 - -[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-08 15:02:11.197908 - -[25] Log opened at 2024-11-08 15:02:26.041123 -[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-08 15:02:27.094739 - -[37] Log opened at 2024-11-08 15:02:32.197114 -[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-08 15:02:33.355006 - -[37] Log opened at 2024-11-08 15:02:35.539751 -[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). -[29] Log opened at 2024-11-08 15:02:35.854385 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step 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] Log opened at 2024-11-08 15:02:36.335388 -[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-08 15:02:36.394719 -[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. -[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). -[35] Log opened at 2024-11-08 15:02:36.593286 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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). -[34] Log opened at 2024-11-08 15:02:36.657239 -[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. -[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-08 15:02:36.692523 - -[22] Log opened at 2024-11-08 15:02:36.734943 -[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. -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step 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). -[38] Log opened at 2024-11-08 15:02:36.857909 -[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. -[23] Log opened at 2024-11-08 15:02:36.917812 -[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. -[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). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[25] Log opened at 2024-11-08 15:02:37.047928 -[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. -[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). -[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). -[37] Log opened at 2024-11-08 15:02:37.123682 -[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. -[29] [Step 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. -[29] Log closed at 2024-11-08 15:02:37.142428 - -[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). -[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] 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] 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-08 15:02:37.544081 - -[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. -[35] [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-08 15:02:37.901174 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:02:38.284177 - -[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. -[22] [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-08 15:02:38.684943 - -[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. -[38] [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-08 15:02:39.059133 - -[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. -[23] [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-08 15:02:39.417714 - -[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. -[25] [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-08 15:02:39.776608 - -[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. -[37] [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-08 15:02:40.153154 - -[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-08 15:02:40.514941 - -[37] Log opened at 2024-11-08 15:02:42.515214 -[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-08 15:02:43.608841 - -[36] Log opened at 2024-11-08 15:04:07.493048 -[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-08 15:04:10.697347 - -[40] Log opened at 2024-11-08 15:04:34.581068 -[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-08 15:04:38.262516 - -[41] Log opened at 2024-11-08 15:04:52.655605 -[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-08 15:04:54.346128 - -[41] Log opened at 2024-11-08 15:04:54.758054 -[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. -[35] Log opened at 2024-11-08 15:04:54.769329 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-11-08 15:04:54.789317 -[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. -[22] Log opened at 2024-11-08 15:04:54.847019 -[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. -[38] Log opened at 2024-11-08 15:04:54.852669 -[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. -[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). -[35] [Step 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). -[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). -[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). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:04:55.791896 - -[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. -[34] [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-08 15:04:56.397140 - -[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-08 15:04:56.735673 - -[35] Log opened at 2024-11-08 15:04:56.769615 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step 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] 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-08 15:04:57.220242 - -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[34] Log opened at 2024-11-08 15:04:57.240186 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[22] Log opened at 2024-11-08 15:04:57.239567 -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[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. -[41] Log opened at 2024-11-08 15:04:57.240140 -[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. -[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. -[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). -[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). -[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). -[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-08 15:04:57.628261 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:04:58.288628 - -[35] Log opened at 2024-11-08 15:04:58.358893 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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. -[35] [Step 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. -[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-08 15:04:58.648888 - -[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. -[41] [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-08 15:04:58.999415 - -[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-08 15:04:59.344137 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:05:01.672041 - -[23] Log opened at 2024-11-08 15:06:01.774551 -[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-08 15:06:02.826447 - -[25] Log opened at 2024-11-08 15:06:15.283476 -[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-08 15:06:16.361510 - -[25] Log opened at 2024-11-08 15:06:20.598896 -[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-08 15:06:23.531948 - -[37] Log opened at 2024-11-08 15:06:39.529268 -[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-08 15:06:42.338385 - -[36] Log opened at 2024-11-08 15:06:50.760733 -[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-08 15:06:51.904938 - -[36] Log opened at 2024-11-08 15:06:51.981894 -[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-08 15:06:52.630341 - -[40] Log opened at 2024-11-08 15:06:52.724308 -[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. -[38] Log opened at 2024-11-08 15:06:52.739790 -[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. -[34] Log opened at 2024-11-08 15:06:52.808554 -[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. -[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). -[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). -[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). -[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-08 15:06:53.724658 - -[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-08 15:06:54.376657 - -[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-08 15:06:54.838772 - -[34] Log opened at 2024-11-08 15:06:56.877392 -[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-08 15:06:58.062755 - -[34] Log opened at 2024-11-08 15:06:58.126811 -[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-08 15:06:58.768992 - -[34] Log opened at 2024-11-08 15:06:58.867739 -[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. -[38] Log opened at 2024-11-08 15:06:58.874610 -[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. -[40] Log opened at 2024-11-08 15:06:58.923941 -[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] [Step 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). -[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). -[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-08 15:06:59.819869 - -[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. -[40] [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-08 15:07:00.496362 - -[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-08 15:07:00.855409 - -[41] Log opened at 2024-11-08 15:08:19.880329 -[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-08 15:08:21.036669 - -[23] Log opened at 2024-11-08 15:15:54.090109 -[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-08 15:15:55.295983 - -[23] Log opened at 2024-11-08 15:15:55.442087 -[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-08 15:15:56.084736 - -[25] Log opened at 2024-11-08 15:15:56.228810 -[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. -[37] Log opened at 2024-11-08 15:15:56.247917 -[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. -[22] Log opened at 2024-11-08 15:15:56.414255 -[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. -[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). -[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). -[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). -[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-08 15:15:57.245977 - -[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-08 15:15:57.888197 - -[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-08 15:15:58.324280 - -[34] Log opened at 2024-11-08 15:16:09.237842 -[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-08 15:16:12.421917 - -[34] Log opened at 2024-11-08 15:16:12.570472 -[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. -[40] Log opened at 2024-11-08 15:16:12.582416 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[41] Log opened at 2024-11-08 15:16:12.582476 -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] Log opened at 2024-11-08 15:16:12.582416 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[35] [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. -[38] Log opened at 2024-11-08 15:16:12.585796 -[23] Log opened at 2024-11-08 15:16:12.585773 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[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. -[23] [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). -[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). -[35] [Step 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). -[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). -[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-08 15:16:13.224819 - -[34] Log opened at 2024-11-08 15:16:13.227097 -[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. -[23] [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). -[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. -[40] [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-08 15:16:13.690191 - -[23] Log opened at 2024-11-08 15:16:13.692971 -[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. -[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. -[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). -[38] [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-08 15:16:14.036230 - -[40] Log opened at 2024-11-08 15:16:14.039027 -[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. -[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. -[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] 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-08 15:16:14.366752 - -[38] Log opened at 2024-11-08 15:16:14.368951 -[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. -[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. -[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). -[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-08 15:16:14.708542 - -[41] Log opened at 2024-11-08 15:16:14.710776 -[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. -[35] [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). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:16:15.137495 - -[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. -[23] [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-08 15:16:15.463751 - -[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. -[40] [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-08 15:16:15.811284 - -[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. -[38] [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-08 15:16:16.159022 - -[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. -[41] [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-08 15:16:16.519608 - -[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-08 15:16:16.855629 - -[35] Log opened at 2024-11-08 15:16:16.943805 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[40] Log opened at 2024-11-08 15:16:16.943883 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[35] [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. -[35] [Step 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] Log opened at 2024-11-08 15:16:17.316972 -[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. -[23] Log opened at 2024-11-08 15:16:17.319886 -[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. -[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). -[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). -[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-08 15:16:18.083825 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:16:18.688793 - -[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. -[23] [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-08 15:16:19.179085 - -[40] Log opened at 2024-11-08 15:16:19.192975 -[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-08 15:16:19.192976 -[35] Log opened at 2024-11-08 15:16:19.192976 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[35] [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. -[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. -[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). -[35] [Step 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-08 15:16:19.574555 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:16:20.280251 - -[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. -[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). -[40] Log closed at 2024-11-08 15:16:20.624561 - -[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-08 15:16:20.990843 - -[25] Log opened at 2024-11-08 15:16:51.076619 -[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-08 15:16:52.166232 - -[25] Log opened at 2024-11-08 15:16:53.713313 -[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. -[22] Log opened at 2024-11-08 15:16:53.718487 -[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. -[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). -[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). -[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-08 15:16:55.169046 - -[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-08 15:16:55.702101 - -[42] Log opened at 2024-11-08 15:17:03.644489 -[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-08 15:17:04.765591 - -[42] Log opened at 2024-11-08 15:17:05.942671 -[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-08 15:17:07.931647 - -[34] Log opened at 2024-11-08 15:17:47.954319 -[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. -[38] Log opened at 2024-11-08 15:17:47.967401 -[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. -[23] Log opened at 2024-11-08 15:17:47.967401 -[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. -[35] Log opened at 2024-11-08 15:17:47.968035 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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). -[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). -[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). -[35] [Step 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. -[23] [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-08 15:17:49.390167 - -[40] Log opened at 2024-11-08 15:17:49.482281 -[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-08 15:17:49.482383 -[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' -[34] Log opened at 2024-11-08 15:17:49.482281 -[41] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[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. -[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. -[38] [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). -[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). -[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). -[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-08 15:17:49.719095 - -[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. -[35] [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-08 15:17:50.076096 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:17:50.423849 - -[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. -[34] [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-08 15:17:50.758088 - -[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. -[41] [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-08 15:17:51.103134 - -[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-08 15:17:51.457981 - -[34] Log opened at 2024-11-08 15:17:55.536708 -[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. -[40] Log opened at 2024-11-08 15:17:55.567056 -[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-08 15:17:55.567491 -[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. -[37] Log opened at 2024-11-08 15:17:55.568560 -[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. -[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). -[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). -[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). -[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. -[37] [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-08 15:17:57.434368 - -[25] Log opened at 2024-11-08 15:17:57.528786 -[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. -[34] Log opened at 2024-11-08 15:17:57.528971 -[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' -[22] Log opened at 2024-11-08 15:17:57.528971 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[34] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [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. -[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). -[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). -[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). -[40] [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-08 15:17:57.772590 - -[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. -[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). -[40] Log closed at 2024-11-08 15:17:58.147958 - -[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-08 15:17:58.486259 - -[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-08 15:17:58.818534 - -[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. -[22] [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-08 15:17:59.157279 - -[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-08 15:17:59.499207 - -[43] Log opened at 2024-11-08 15:18:34.851151 -[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. -[23] Log opened at 2024-11-08 15:18:34.851005 -[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. -[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). -[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-08 15:18:36.887007 - -[23] Log opened at 2024-11-08 15:18:36.979933 -[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. -[38] Log opened at 2024-11-08 15:18:36.981062 -[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. -[35] Log opened at 2024-11-08 15:18:36.981495 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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). -[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). -[35] [Step 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-08 15:18:37.675391 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[43] Log opened at 2024-11-08 15:18:37.803871 -[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. -[37] Log opened at 2024-11-08 15:18:37.838999 -[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. -[40] Log opened at 2024-11-08 15:18:37.839273 -[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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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). -[23] [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). -[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). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:18:38.081090 - -[35] Log opened at 2024-11-08 15:18:38.083097 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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. -[35] [Step 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. -[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-08 15:18:38.434840 - -[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-08 15:18:38.808501 - -[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. -[37] [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-08 15:18:39.960615 - -[23] Log opened at 2024-11-08 15:18:40.042875 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[43] Log opened at 2024-11-08 15:18:40.042875 -[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' -[23] [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. -[38] Log opened at 2024-11-08 15:18:40.042875 -[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] [Step 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. -[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). -[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). -[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). -[40] [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-08 15:18:40.305366 - -[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. -[35] [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-08 15:18:40.660358 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:18:40.991258 - -[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. -[23] [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-08 15:18:41.327546 - -[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. -[43] [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-08 15:18:41.679749 - -[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-08 15:18:42.031681 - -[25] Log opened at 2024-11-08 15:18:51.910002 -[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. -[34] Log opened at 2024-11-08 15:18:51.949741 -[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. -[22] Log opened at 2024-11-08 15:18:51.951996 -[44] Log opened at 2024-11-08 15:18:51.953227 -[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' -[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. -[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). -[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). -[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). -[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] 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-08 15:18:53.398674 - -[25] Log opened at 2024-11-08 15:18:53.428711 -[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. -[37] Log opened at 2024-11-08 15:18:53.482869 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[40] Log opened at 2024-11-08 15:18:53.482869 -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[37] [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. -[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. -[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). -[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). -[35] Log opened at 2024-11-08 15:18:53.704122 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[23] Log opened at 2024-11-08 15:18:53.738046 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[38] Log opened at 2024-11-08 15:18:53.738010 -[23] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[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. -[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-08 15:18:53.741398 - -[34] Log opened at 2024-11-08 15:18:53.745085 -[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. -[35] [Step 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] 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. -[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). -[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). -[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). -[44] [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-08 15:18:54.125599 - -[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-08 15:18:54.486438 - -[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. -[37] [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-08 15:18:55.708082 - -[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. -[40] [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-08 15:18:56.044402 - -[37] Log opened at 2024-11-08 15:18:56.046077 -[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. -[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. -[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). -[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-08 15:18:56.390916 - -[40] Log opened at 2024-11-08 15:18:56.393150 -[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). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:18:57.505418 - -[35] Log opened at 2024-11-08 15:18:57.507802 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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. -[35] [Step 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. -[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-08 15:18:57.844263 - -[25] Log opened at 2024-11-08 15:18:57.846176 -[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. -[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. -[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). -[23] [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-08 15:18:58.175318 - -[38] Log opened at 2024-11-08 15:18:58.177228 -[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. -[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. -[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] 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-08 15:18:58.519806 - -[23] Log opened at 2024-11-08 15:18:58.521811 -[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. -[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. -[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). -[40] [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-08 15:18:58.867553 - -[37] Log opened at 2024-11-08 15:18:58.870886 -[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. -[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. -[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). -[35] [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-08 15:18:59.214114 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-08 15:18:59.587166 - -[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] 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-08 15:18:59.914679 - -[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. -[23] [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-08 15:19:00.251965 - -[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. -[37] [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-08 15:19:00.580079 - -[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-08 15:19:00.907868 - -[50] Log opened at 2024-11-08 15:19:08.923407 -[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' -[49] Log opened at 2024-11-08 15:19:08.923428 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[50] [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. -[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). -[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. -[50] [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-08 15:19:10.114295 - -[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-08 15:19:10.462464 - -[40] Log opened at 2024-11-08 15:19:45.682022 -[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-08 15:19:47.046712 - -[25] Log opened at 2024-11-08 15:41:57.696298 -[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-08 15:42:00.892111 - -[25] Log opened at 2024-11-08 15:42:01.021037 -[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] Log opened at 2024-11-08 15:42:01.068061 -[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' -[23] Log opened at 2024-11-08 15:42:01.068092 -[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' -[49] [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. -[37] Log opened at 2024-11-08 15:42:01.074874 -[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] Log opened at 2024-11-08 15:42:01.079694 -[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. -[50] Log opened at 2024-11-08 15:42:01.083389 -[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. -[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. -[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). -[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). -[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). -[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). -[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). -[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-08 15:42:01.666271 - -[25] Log opened at 2024-11-08 15:42:01.668757 -[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. -[50] [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). -[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-08 15:42:02.125508 - -[50] Log opened at 2024-11-08 15:42:02.127513 -[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. -[49] [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). -[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. -[37] [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-08 15:42:02.603803 - -[49] Log opened at 2024-11-08 15:42:02.606335 -[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. -[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. -[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). -[23] [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-08 15:42:02.934435 - -[37] Log opened at 2024-11-08 15:42:02.936378 -[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. -[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. -[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). -[38] [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-08 15:42:03.281467 - -[23] Log opened at 2024-11-08 15:42:03.284069 -[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. -[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. -[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] 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-08 15:42:03.616169 - -[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. -[50] [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-08 15:42:03.942869 - -[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. -[49] [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-08 15:42:04.271939 - -[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. -[37] [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-08 15:42:04.612691 - -[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. -[23] [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-08 15:42:04.930955 - -[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-08 15:42:05.280676 - -[38] Log opened at 2024-11-08 15:42:05.444255 -[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. -[50] Log opened at 2024-11-08 15:42:05.451161 -[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. -[37] Log opened at 2024-11-08 15:42:05.616755 -[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. -[49] Log opened at 2024-11-08 15:42:05.617230 -[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. -[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). -[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). -[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). -[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). -[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-08 15:42:06.556951 - -[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. -[49] [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-08 15:42:07.165844 - -[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-08 15:42:07.549318 - -[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-08 15:42:08.059564 - -[38] Log opened at 2024-11-08 15:42:08.073593 -[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. -[50] Log opened at 2024-11-08 15:42:08.074999 -[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. -[37] Log opened at 2024-11-08 15:42:08.075441 -[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). -[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). -[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). -[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-08 15:42:09.103098 - -[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-08 15:42:09.861276 - -[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-08 15:42:10.573281 - -[38] Log opened at 2024-11-08 15:42:12.218676 -[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-08 15:42:12.225528 -[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. -[50] Log opened at 2024-11-08 15:42:12.225528 -[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. -[49] Log opened at 2024-11-08 15:42:12.229792 -[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. -[44] Log opened at 2024-11-08 15:42:12.230776 -[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. -[34] Log opened at 2024-11-08 15:42:12.230987 -[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. -[40] Log opened at 2024-11-08 15:42:12.232771 -[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. -[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). -[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). -[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). -[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). -[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). -[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. -[38] [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-08 15:42:13.333565 - -[40] Log opened at 2024-11-08 15:42:13.350102 -[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. -[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. -[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). -[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] Log closed at 2024-11-08 15:42:13.707210 - -[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. -[49] [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-08 15:42:14.085351 - -[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. -[44] [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-08 15:42:14.481801 - -[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. -[50] [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-08 15:42:14.874112 - -[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. -[34] [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-08 15:42:15.241956 - -[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. -[40] [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-08 15:42:15.615264 - -[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-08 15:42:16.137329 - -[25] Log opened at 2024-11-08 15:46:29.253434 -[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-08 15:46:32.365075 - -[25] Log opened at 2024-11-08 15:46:32.497014 -[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. -[38] Log opened at 2024-11-08 15:46:32.501244 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[53] Log opened at 2024-11-08 15:46:32.501636 -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[40] Log opened at 2024-11-08 15:46:32.501264 -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' -[37] Log opened at 2024-11-08 15:46:32.501419 -[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. -[40] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[49] Log opened at 2024-11-08 15:46:32.501857 -[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. -[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). -[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). -[53] [Step 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). -[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). -[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). -[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. -[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-08 15:46:33.161603 - -[25] Log opened at 2024-11-08 15:46:33.163635 -[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] 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. -[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). -[37] [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-08 15:46:33.556032 - -[49] Log opened at 2024-11-08 15:46:33.558568 -[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. -[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. -[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). -[53] [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-08 15:46:33.896268 - -[37] Log opened at 2024-11-08 15:46:33.899184 -[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. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [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). -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-11-08 15:46:34.225975 - -[53] Log opened at 2024-11-08 15:46:34.228248 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [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. -[53] [Step 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). -[38] Log closed at 2024-11-08 15:46:34.552916 - -[38] Log opened at 2024-11-08 15:46:34.555110 -[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. -[40] [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). -[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] 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-08 15:46:34.990178 - -[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-08 15:46:35.329913 - -[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. -[37] [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-08 15:46:35.673020 - -[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. -[53] [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-08 15:46:36.017839 - -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [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. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-11-08 15:46:36.371055 - -[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-08 15:46:36.714821 - -[37] Log opened at 2024-11-08 15:46:36.777479 -[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] Log opened at 2024-11-08 15:46:36.781996 -[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. -[49] Log opened at 2024-11-08 15:46:36.948194 -[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. -[40] Log opened at 2024-11-08 15:46:36.951949 -[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. -[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). -[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). -[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). -[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). -[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-08 15:46:37.860014 - -[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. -[40] [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-08 15:46:38.473896 - -[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-08 15:46:38.865505 - -[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-08 15:46:39.360504 - -[38] Log opened at 2024-11-08 15:46:39.377602 -[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-08 15:46:39.378034 -[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. -[49] Log opened at 2024-11-08 15:46:39.378034 -[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. -[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). -[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. -[37] [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-08 15:46:40.435400 - -[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-08 15:46:40.784527 - -[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-08 15:46:41.166193 - -[40] Log opened at 2024-11-08 15:46:42.055577 -[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. -[37] Log opened at 2024-11-08 15:46:42.055577 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[38] Log opened at 2024-11-08 15:46:42.055577 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[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. -[49] Log opened at 2024-11-08 15:46:42.055577 -[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. -[44] Log opened at 2024-11-08 15:46:42.059284 -[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. -[50] Log opened at 2024-11-08 15:46:42.062546 -[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. -[34] Log opened at 2024-11-08 15:46:42.062945 -[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. -[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). -[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). -[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). -[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). -[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). -[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). -[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. -[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] Log closed at 2024-11-08 15:46:43.152181 - -[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. -[40] [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-08 15:46:43.532074 - -[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. -[50] [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-08 15:46:43.903000 - -[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-08 15:46:44.300668 - -[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. -[34] [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-08 15:46:44.725999 - -[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. -[44] [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-08 15:46:45.117995 - -[38] Log opened at 2024-11-08 15:46:45.132889 -[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. -[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. -[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). -[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-08 15:46:45.518597 - -[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-08 15:46:46.238937 - -[25] Log opened at 2024-11-08 15:46:59.040858 -[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-08 15:47:00.147256 - -[25] Log opened at 2024-11-08 15:47:01.155931 -[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. -[53] Log opened at 2024-11-08 15:47:01.171216 -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[53] [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). -[53] [Step 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-08 15:47:02.705077 - -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-11-08 15:47:03.301414 - -[25] Log opened at 2024-11-08 15:47:04.628283 -[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-08 15:47:05.796932 - -[25] Log opened at 2024-11-08 15:47:07.179531 -[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-08 15:47:09.926278 - -[25] Log opened at 2024-11-08 15:47:10.578860 -[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. -[37] Log opened at 2024-11-08 15:47:10.595918 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[55] Log opened at 2024-11-08 15:47:10.596431 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[37] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-11-08 15:47:10.597515 -[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] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step 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). -[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-08 15:47:11.670875 - -[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. -[55] [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-08 15:47:12.106419 - -[40] Log opened at 2024-11-08 15:47:12.210087 -[25] Log opened at 2024-11-08 15:47:12.210087 -[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' -[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[50] Log opened at 2024-11-08 15:47:12.210680 -[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. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [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. -[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). -[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). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-11-08 15:47:12.443249 - -[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-08 15:47:12.781509 - -[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. -[40] [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-08 15:47:13.275063 - -[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] 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-08 15:47:13.636611 - -[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-08 15:47:13.977377 - -[25] Log opened at 2024-11-08 15:47:14.826001 -[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. -[55] Log opened at 2024-11-08 15:47:14.842629 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-11-08 15:47:14.842629 -[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. -[50] Log opened at 2024-11-08 15:47:14.843408 -[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. -[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). -[55] [Step 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). -[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). -[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. -[50] [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-08 15:47:17.551638 - -[40] Log opened at 2024-11-08 15:47:17.662706 -[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-08 15:47:17.662692 -[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] Log opened at 2024-11-08 15:47:17.663301 -[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. -[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. -[55] [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). -[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). -[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-08 15:47:17.892823 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [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. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-11-08 15:47:18.246367 - -[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. -[49] [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-08 15:47:18.582428 - -[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. -[40] [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-08 15:47:18.920257 - -[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] 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-08 15:47:19.265993 - -[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-08 15:47:19.636990 - -[25] Log opened at 2024-11-08 15:47:21.264557 -[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. -[50] Log opened at 2024-11-08 15:47:21.264922 -[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. -[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). -[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). -[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. -[50] [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-08 15:47:22.493180 - -[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-08 15:47:22.853117 - -[53] Log opened at 2024-11-08 15:47:29.644412 -[38] Log opened at 2024-11-08 15:47:29.644210 -[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' -[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' -[44] Log opened at 2024-11-08 15:47:29.644210 -[38] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[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. -[55] Log opened at 2024-11-08 15:47:29.650894 -[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[56] Log opened at 2024-11-08 15:47:29.651540 -[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' -[37] Log opened at 2024-11-08 15:47:29.651331 -[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' -[56] [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. -[49] Log opened at 2024-11-08 15:47:29.654297 -[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. -[53] [Step 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). -[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). -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [Step 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). -[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). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[53] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[53] Log closed at 2024-11-08 15:47:30.766597 - -[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. -[56] [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-08 15:47:31.231396 - -[49] Log opened at 2024-11-08 15:47:31.245807 -[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. -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] [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). -[56] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[56] Log closed at 2024-11-08 15:47:31.592966 - -[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. -[38] [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-08 15:47:32.056561 - -[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. -[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] Log closed at 2024-11-08 15:47:32.439098 - -[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. -[55] [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-08 15:47:32.838210 - -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[55] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[55] Log closed at 2024-11-08 15:47:33.213938 - -[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-08 15:47:33.635252 - -[25] Log opened at 2024-11-09 10:16:26.676028 -[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-09 10:16:27.756162 - -[26] Log opened at 2024-11-09 10:16:27.862214 -[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-09 10:16:28.513016 - -[23] Log opened at 2024-11-09 10:16:28.637354 -[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-09 10:16:29.534249 - -[23] Log opened at 2024-11-09 10:16:33.999923 -[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-09 10:16:35.450770 - -[23] Log opened at 2024-11-09 10:16:35.460561 -[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-09 10:16:36.550511 - -[23] Log opened at 2024-11-09 10:16:36.604419 -[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-09 10:16:37.247721 - -[23] Log opened at 2024-11-09 10:16:37.326424 -[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. -[29] Log opened at 2024-11-09 10:16:37.341606 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [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). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:16:38.302776 - -[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-09 10:16:38.932792 - -[33] Log opened at 2024-11-09 10:17:14.096946 -[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-09 10:17:15.306321 - -[33] Log opened at 2024-11-09 10:17:15.381376 -[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-09 10:17:16.026527 - -[22] Log opened at 2024-11-09 10:17:16.143942 -[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. -[27] Log opened at 2024-11-09 10:17:16.152807 -[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-09 10:17:16.251928 -[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. -[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). -[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). -[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-09 10:17:17.116963 - -[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-09 10:17:17.780960 - -[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-09 10:17:18.210939 - -[22] Log opened at 2024-11-09 10:17:19.976422 -[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-09 10:17:21.742049 - -[22] Log opened at 2024-11-09 10:17:21.830036 -[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-09 10:17:22.481618 - -[22] Log opened at 2024-11-09 10:17:22.648814 -[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. -[27] Log opened at 2024-11-09 10:17:22.654874 -[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-09 10:17:22.676581 -[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-09 10:17:22.721503 -[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. -[29] Log opened at 2024-11-09 10:17:22.727261 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [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). -[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). -[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). -[29] [Step 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-09 10:17:23.619051 - -[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. -[25] [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-09 10:17:24.295688 - -[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. -[29] [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-09 10:17:24.641411 - -[22] Log opened at 2024-11-09 10:17:24.671747 -[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. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [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). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:17:25.002707 - -[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-09 10:17:25.540639 - -[27] Log opened at 2024-11-09 10:17:25.551975 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[25] Log opened at 2024-11-09 10:17:25.551975 -[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] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-11-09 10:17:25.552497 -[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] [Step 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] 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. -[25] [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-09 10:17:26.267961 - -[22] Log opened at 2024-11-09 10:17:26.354463 -[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. -[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. -[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). -[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-09 10:17:26.610248 - -[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-09 10:17:26.985859 - -[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-09 10:17:27.346325 - -[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-09 10:17:29.818292 - -[23] Log opened at 2024-11-09 10:17:35.386470 -[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-09 10:17:38.832839 - -[26] Log opened at 2024-11-09 10:18:26.109047 -[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-09 10:18:29.704991 - -[30] Log opened at 2024-11-09 10:18:44.896041 -[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-09 10:18:48.266105 - -[33] Log opened at 2024-11-09 10:20:13.981470 -[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-09 10:20:17.967769 - -[31] Log opened at 2024-11-09 10:20:21.216710 -[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-09 10:20:22.849750 - -[31] Log opened at 2024-11-09 10:20:23.005950 -[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-09 10:20:23.671253 - -[24] Log opened at 2024-11-09 10:20:23.932705 -[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. -[25] Log opened at 2024-11-09 10:20:23.938396 -[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. -[22] Log opened at 2024-11-09 10:20:23.962406 -[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. -[27] Log opened at 2024-11-09 10:20:24.013135 -[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. -[29] Log opened at 2024-11-09 10:20:24.023149 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [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). -[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). -[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). -[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). -[29] [Step 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-09 10:20:24.924377 - -[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. -[22] [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-09 10:20:25.582890 - -[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-09 10:20:25.907473 - -[24] Log opened at 2024-11-09 10:20:25.945006 -[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] [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). -[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [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-09 10:20:26.417618 - -[25] Log opened at 2024-11-09 10:20:26.431957 -[22] Log opened at 2024-11-09 10:20:26.431970 -[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' -[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. -[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[27] Log opened at 2024-11-09 10:20:26.432606 -[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. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [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). -[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). -[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). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:20:26.797491 - -[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. -[27] [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-09 10:20:27.445060 - -[24] Log opened at 2024-11-09 10:20:27.508477 -[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] [Step 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] 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. -[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-09 10:20:27.796803 - -[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. -[25] [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-09 10:20:28.153034 - -[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-09 10:20:28.510563 - -[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-09 10:20:31.113304 - -[26] Log opened at 2024-11-09 10:21:36.423232 -[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-09 10:21:39.957911 - -[26] Log opened at 2024-11-09 10:21:42.387986 -[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-09 10:21:45.849430 - -[33] Log opened at 2024-11-09 10:26:54.803523 -[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-09 10:26:58.572749 - -[31] Log opened at 2024-11-09 10:30:40.842258 -[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-09 10:30:42.504861 - -[31] Log opened at 2024-11-09 10:30:42.643918 -[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-09 10:30:43.306110 - -[29] Log opened at 2024-11-09 10:30:43.575573 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[22] Log opened at 2024-11-09 10:30:43.576253 -[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. -[24] Log opened at 2024-11-09 10:30:43.599081 -[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-09 10:30:43.658243 -[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-09 10:30:43.664894 -[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. -[29] [Step 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] 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). -[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). -[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. -[24] [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-09 10:30:44.589687 - -[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-09 10:30:44.907451 - -[22] Log opened at 2024-11-09 10:30:44.948909 -[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. -[29] [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). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:30:45.537034 - -[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-09 10:30:46.044586 - -[29] Log opened at 2024-11-09 10:30:46.064944 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[24] Log opened at 2024-11-09 10:30:46.067674 -[27] Log opened at 2024-11-09 10:30:46.067674 -[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' -[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' -[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). -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step 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). -[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-09 10:30:46.423771 - -[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. -[29] [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-09 10:30:47.104374 - -[22] Log opened at 2024-11-09 10:30:47.174587 -[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. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [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). -[24] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:30:47.476502 - -[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. -[27] [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-09 10:30:47.844861 - -[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-09 10:30:48.209458 - -[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-09 10:30:50.931568 - -[33] Log opened at 2024-11-09 10:31:35.008460 -[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-09 10:31:38.729199 - -[36] Log opened at 2024-11-09 10:33:03.469100 -[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-09 10:33:05.176468 - -[36] Log opened at 2024-11-09 10:33:05.324669 -[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-09 10:33:05.982677 - -[27] Log opened at 2024-11-09 10:33:06.249808 -[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-09 10:33:06.256127 -[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-09 10:33:06.283464 -[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-09 10:33:06.332689 -[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. -[29] Log opened at 2024-11-09 10:33:06.340835 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [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). -[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). -[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). -[29] [Step 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-09 10:33:07.242692 - -[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. -[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-09 10:33:07.857860 - -[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-09 10:33:08.208308 - -[27] Log opened at 2024-11-09 10:33:08.244973 -[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. -[31] [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). -[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. -[29] [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-09 10:33:08.697473 - -[25] Log opened at 2024-11-09 10:33:08.712298 -[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-09 10:33:08.713362 -[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-09 10:33:08.713476 -[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. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [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). -[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). -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:33:09.065143 - -[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. -[31] [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-09 10:33:09.714485 - -[27] Log opened at 2024-11-09 10:33:09.783554 -[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. -[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. -[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] 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-09 10:33:10.075749 - -[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. -[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). -[25] Log closed at 2024-11-09 10:33:10.432918 - -[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-09 10:33:10.806283 - -[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-09 10:33:13.482889 - -[33] Log opened at 2024-11-09 10:33:36.319726 -[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. -[35] Log opened at 2024-11-09 10:33:36.333748 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[37] Log opened at 2024-11-09 10:33:36.347532 -[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. -[36] Log opened at 2024-11-09 10:33:36.356412 -[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. -[29] Log opened at 2024-11-09 10:33:36.369093 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [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). -[35] [Step 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). -[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). -[29] [Step 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-09 10:33:39.556892 - -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:33:42.218136 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:33:44.839127 - -[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-09 10:33:47.433114 - -[29] Log opened at 2024-11-09 10:33:48.378265 -[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[31] Log opened at 2024-11-09 10:33:48.385996 -[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. -[25] Log opened at 2024-11-09 10:33:48.394035 -[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. -[29] [Step 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). -[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] 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-09 10:33:50.233181 - -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[29] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[29] Log closed at 2024-11-09 10:33:52.944084 - -[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-09 10:33:55.480717 - -[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-09 10:33:57.882384 - -[35] Log opened at 2024-11-09 10:42:10.318221 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:42:13.696171 - -[37] Log opened at 2024-11-09 10:42:22.988460 -[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-09 10:42:24.020976 - -[37] Log opened at 2024-11-09 10:42:25.545280 -[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-09 10:42:28.883031 - -[31] Log opened at 2024-11-09 10:43:28.460976 -[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-09 10:43:31.678015 - -[27] Log opened at 2024-11-09 10:45:26.699460 -[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-09 10:45:28.356734 - -[27] Log opened at 2024-11-09 10:45:28.546034 -[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-09 10:45:29.204687 - -[33] Log opened at 2024-11-09 10:45:29.601458 -[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] Log opened at 2024-11-09 10:45:29.692860 -[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. -[37] Log opened at 2024-11-09 10:45:29.699666 -[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. -[30] Log opened at 2024-11-09 10:45:29.711111 -[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. -[35] Log opened at 2024-11-09 10:45:29.716571 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [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). -[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). -[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). -[35] [Step 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-09 10:45:30.695112 - -[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. -[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-09 10:45:31.296662 - -[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-09 10:45:31.659636 - -[33] Log opened at 2024-11-09 10:45:31.693862 -[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. -[30] [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). -[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. -[35] [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-09 10:45:32.170159 - -[30] Log opened at 2024-11-09 10:45:32.184782 -[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. -[36] Log opened at 2024-11-09 10:45:32.186681 -[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. -[37] Log opened at 2024-11-09 10:45:32.187797 -[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. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [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). -[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). -[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). -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:45:32.540483 - -[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. -[30] [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-09 10:45:33.246149 - -[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-09 10:45:33.625737 - -[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. -[37] [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-09 10:45:34.054783 - -[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-09 10:45:34.428503 - -[33] Log opened at 2024-11-09 10:45:35.942103 -[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-09 10:45:39.502169 - -[31] Log opened at 2024-11-09 10:45:47.107441 -[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-09 10:45:50.359186 - -[25] Log opened at 2024-11-09 10:45:55.431895 -[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-09 10:45:56.476217 - -[25] Log opened at 2024-11-09 10:45:57.233457 -[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-09 10:46:00.922285 - -[36] Log opened at 2024-11-09 10:48:23.047694 -[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-09 10:48:24.701430 - -[36] Log opened at 2024-11-09 10:48:24.867856 -[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-09 10:48:25.543923 - -[25] Log opened at 2024-11-09 10:48:25.889920 -[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-09 10:48:25.908952 -[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-09 10:48:25.931955 -[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-09 10:48:25.985467 -[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] Log opened at 2024-11-09 10:48:25.990884 -[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] [Step 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). -[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). -[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-09 10:48:26.875775 - -[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. -[31] [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-09 10:48:27.506343 - -[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-09 10:48:27.842050 - -[25] Log opened at 2024-11-09 10:48:27.877127 -[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] 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). -[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-09 10:48:28.313455 - -[24] Log opened at 2024-11-09 10:48:28.328529 -[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-09 10:48:28.328781 -[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-09 10:48:28.329029 -[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. -[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). -[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-09 10:48:28.699431 - -[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. -[31] [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-09 10:48:29.363366 - -[25] Log opened at 2024-11-09 10:48:29.453036 -[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. -[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. -[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). -[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-09 10:48:29.736104 - -[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. -[33] [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-09 10:48:30.142073 - -[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-09 10:48:30.510336 - -[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-09 10:48:33.261241 - -[25] Log opened at 2024-11-09 10:48:34.078126 -[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-09 10:48:35.126593 - -[25] Log opened at 2024-11-09 10:48:36.015830 -[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-09 10:48:39.403658 - -[35] Log opened at 2024-11-09 10:49:31.936546 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:49:33.582002 - -[35] Log opened at 2024-11-09 10:49:33.751944 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:49:34.412585 - -[30] Log opened at 2024-11-09 10:49:34.745963 -[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. -[39] Log opened at 2024-11-09 10:49:34.761527 -[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-09 10:49:34.777226 -[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. -[37] Log opened at 2024-11-09 10:49:34.831656 -[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-09 10:49:34.835810 -[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. -[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). -[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). -[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). -[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-09 10:49:35.748629 - -[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. -[36] [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-09 10:49:36.352766 - -[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-09 10:49:36.711955 - -[30] Log opened at 2024-11-09 10:49:36.747805 -[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. -[37] [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). -[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. -[31] [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-09 10:49:37.189104 - -[39] Log opened at 2024-11-09 10:49:37.204897 -[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-09 10:49:37.205133 -[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. -[37] Log opened at 2024-11-09 10:49:37.205758 -[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] [Step 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. -[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). -[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). -[31] Log closed at 2024-11-09 10:49:37.567726 - -[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. -[39] [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-09 10:49:38.300885 - -[30] Log opened at 2024-11-09 10:49:38.368867 -[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. -[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. -[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). -[37] [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-09 10:49:38.652022 - -[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. -[36] [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-09 10:49:39.004850 - -[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-09 10:49:39.357817 - -[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-09 10:49:42.083368 - -[30] Log opened at 2024-11-09 10:49:44.196482 -[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-09 10:49:45.305698 - -[30] Log opened at 2024-11-09 10:49:46.209298 -[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-09 10:49:49.471182 - -[25] Log opened at 2024-11-09 10:55:12.452065 -[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-09 10:55:14.140105 - -[25] Log opened at 2024-11-09 10:55:14.307299 -[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-09 10:55:14.971147 - -[31] Log opened at 2024-11-09 10:55:15.289402 -[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. -[35] Log opened at 2024-11-09 10:55:15.389543 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[40] Log opened at 2024-11-09 10:55:15.389963 -[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-09 10:55:15.407559 -[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. -[27] Log opened at 2024-11-09 10:55:15.438288 -[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. -[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). -[35] [Step 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). -[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). -[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] 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-09 10:55:16.364941 - -[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. -[35] [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-09 10:55:16.983829 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:55:17.313628 - -[31] Log opened at 2024-11-09 10:55:17.351016 -[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] [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). -[39] [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. -[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-09 10:55:17.821650 - -[40] Log opened at 2024-11-09 10:55:17.835830 -[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. -[35] Log opened at 2024-11-09 10:55:17.835825 -[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[39] Log opened at 2024-11-09 10:55:17.836698 -[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. -[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). -[35] [Step 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). -[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-09 10:55:18.220022 - -[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. -[39] [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-09 10:55:18.945263 - -[31] Log opened at 2024-11-09 10:55:19.017656 -[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] [Step 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. -[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). -[35] [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-09 10:55:19.294258 - -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[35] [Step Debug] ERR: Time-out connecting to debugging client, waited: 200 ms. Tried: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). -[35] Log closed at 2024-11-09 10:55:19.646693 - -[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-09 10:55:20.051162 - -[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-09 10:55:22.725262 - -[31] Log opened at 2024-11-09 10:55:23.899792 -[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-09 10:55:24.944444 - -[31] Log opened at 2024-11-09 10:55:26.283870 -[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-09 10:55:29.867779 - -[31] Log opened at 2024-11-09 10:55:31.585426 -[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-09 10:55:36.144520 - -[31] Log opened at 2024-11-09 10:55:40.104582 -[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-09 10:55:43.672373 - -[31] Log opened at 2024-11-09 10:55:48.070457 -[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-09 10:55:51.915699 - -[30] Log opened at 2024-11-09 11:01:13.758953 -[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-09 11:01:15.517530 - -[30] Log opened at 2024-11-09 11:01:15.773523 -[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-09 11:01:16.430035 - -[33] Log opened at 2024-11-09 11:01:16.861201 -[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-09 11:01:16.936897 -[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-09 11:01:16.937923 -[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. -[39] Log opened at 2024-11-09 11:01:17.011146 -[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). -[41] Log opened at 2024-11-09 11:01:17.078032 -[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. -[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). -[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). -[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-09 11:01:17.996676 - -[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. -[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-09 11:01:18.626636 - -[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-09 11:01:18.959356 - -[33] Log opened at 2024-11-09 11:01:18.992620 -[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] [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). -[39] [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. -[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-09 11:01:19.479844 - -[27] Log opened at 2024-11-09 11:01:19.495960 -[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-09 11:01:19.500018 -[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. -[39] Log opened at 2024-11-09 11:01:19.501353 -[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] [Step 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] 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). -[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). -[41] Log closed at 2024-11-09 11:01:19.863133 - -[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. -[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] Log closed at 2024-11-09 11:01:20.556268 - -[33] Log opened at 2024-11-09 11:01:20.655058 -[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] [Step 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] 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] 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-09 11:01:20.931405 - -[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-09 11:01:21.325106 - -[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-09 11:01:21.683157 - -[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-09 11:01:24.798363 - -[31] Log opened at 2024-11-09 11:03:01.019202 -[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-09 11:03:02.685859 - -[31] Log opened at 2024-11-09 11:03:02.894326 -[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-09 11:03:03.552690 - -[30] Log opened at 2024-11-09 11:03:04.036463 -[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. -[42] Log opened at 2024-11-09 11:03:04.045062 -[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. -[41] Log opened at 2024-11-09 11:03:04.057361 -[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] Log opened at 2024-11-09 11:03:04.076285 -[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' -[36] Log opened at 2024-11-09 11:03:04.076288 -[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' -[39] [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. -[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). -[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). -[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] 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-09 11:03:05.041373 - -[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-09 11:03:05.734909 - -[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. -[39] [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-09 11:03:06.225813 - -[30] Log opened at 2024-11-09 11:03:06.244007 -[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' -[42] Log opened at 2024-11-09 11:03:06.244820 -[30] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[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. -[36] Log opened at 2024-11-09 11:03:06.244819 -[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. -[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. -[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). -[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). -[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] 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-09 11:03:06.605805 - -[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. -[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). -[41] Log closed at 2024-11-09 11:03:06.953923 - -[41] Log opened at 2024-11-09 11:03:06.987105 -[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] 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] 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. -[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-09 11:03:07.307490 - -[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. -[36] [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-09 11:03:07.679693 - -[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-09 11:03:08.060272 - -[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-09 11:03:08.713783 - -[30] Log opened at 2024-11-09 11:03:08.788290 -[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-09 11:03:12.665022 - -[33] Log opened at 2024-11-09 11:03:29.812561 -[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-09 11:03:31.460193 - -[33] Log opened at 2024-11-09 11:03:31.665708 -[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-09 11:03:32.328351 - -[42] Log opened at 2024-11-09 11:03:32.752404 -[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. -[31] Log opened at 2024-11-09 11:03:32.826259 -[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-09 11:03:32.828950 -[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. -[43] Log opened at 2024-11-09 11:03:32.874208 -[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. -[40] Log opened at 2024-11-09 11:03:32.880157 -[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). -[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). -[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). -[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). -[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-09 11:03:33.788076 - -[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. -[39] [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-09 11:03:34.399796 - -[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-09 11:03:34.739046 - -[42] Log opened at 2024-11-09 11:03:34.770975 -[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. -[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). -[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. -[40] [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-09 11:03:35.239635 - -[31] Log opened at 2024-11-09 11:03:35.254861 -[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-09 11:03:35.256656 -[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. -[43] Log opened at 2024-11-09 11:03:35.257295 -[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. -[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. -[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). -[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). -[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-09 11:03:35.636711 - -[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. -[31] [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-09 11:03:36.314365 - -[42] Log opened at 2024-11-09 11:03:36.386434 -[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. -[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. -[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). -[39] [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-09 11:03:36.664781 - -[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. -[43] [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-09 11:03:37.015161 - -[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-09 11:03:37.379400 - -[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-09 11:03:40.530043 - -[30] Log opened at 2024-11-09 11:10:52.828946 -[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-09 11:10:54.542573 - -[30] Log opened at 2024-11-09 11:10:54.772555 -[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-09 11:10:55.439610 - -[44] Log opened at 2024-11-09 11:10:55.900754 -[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] Log opened at 2024-11-09 11:10:55.963847 -[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. -[31] Log opened at 2024-11-09 11:10:55.973112 -[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. -[25] Log opened at 2024-11-09 11:10:56.001523 -[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-09 11:10:56.001526 -[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. -[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). -[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). -[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). -[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-09 11:10:57.000267 - -[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. -[31] [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-09 11:10:57.676997 - -[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. -[25] [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-09 11:10:58.004389 - -[44] Log opened at 2024-11-09 11:10:58.043438 -[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). -[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-09 11:10:58.371395 - -[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-09 11:10:58.874650 - -[40] Log opened at 2024-11-09 11:10:58.903315 -[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. -[31] Log opened at 2024-11-09 11:10:58.904262 -[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-09 11:10:58.904903 -[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] [Step 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). -[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. -[31] [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-09 11:10:59.604036 - -[44] Log opened at 2024-11-09 11:10:59.690156 -[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. -[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. -[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). -[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). -[31] Log closed at 2024-11-09 11:11:00.001653 - -[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-09 11:11:00.382944 - -[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-09 11:11:00.756072 - -[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-09 11:11:03.723300 - -[41] Log opened at 2024-11-09 11:11:56.408305 -[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-09 11:11:58.201002 - -[41] Log opened at 2024-11-09 11:11:58.509334 -[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-09 11:11:59.185574 - -[33] Log opened at 2024-11-09 11:11:59.702619 -[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] Log opened at 2024-11-09 11:11:59.726113 -[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. -[30] Log opened at 2024-11-09 11:11:59.756270 -[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. -[25] Log opened at 2024-11-09 11:11:59.787418 -[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-09 11:11:59.787834 -[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. -[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). -[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). -[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). -[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). -[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-09 11:12:00.749969 - -[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. -[30] [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-09 11:12:01.407026 - -[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-09 11:12:01.737053 - -[25] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. -[33] Log opened at 2024-11-09 11:12:01.768280 -[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. -[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. -[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). -[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-09 11:12:02.139679 - -[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-09 11:12:02.658228 - -[31] Log opened at 2024-11-09 11:12:02.673162 -[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. -[30] Log opened at 2024-11-09 11:12:02.674957 -[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. -[45] Log opened at 2024-11-09 11:12:02.675415 -[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. -[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). -[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). -[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). -[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. -[30] [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-09 11:12:03.409585 - -[33] Log opened at 2024-11-09 11:12:03.481122 -[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. -[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. -[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). -[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-09 11:12:03.766122 - -[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. -[45] [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-09 11:12:04.124777 - -[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-09 11:12:04.505293 - -[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-09 11:12:07.687356 - -[46] Log opened at 2024-11-09 11:14:25.636258 -[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. -[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] [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-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 - From fd693fbb53ff9063ec0130070989411f64f65fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 12 Nov 2024 19:09:47 +0100 Subject: [PATCH 3/5] ocultado el cliente --- .../vuexy/form/presupuestos/cliente/items/_datosGenerales.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php index d3e013f8..cb08bd4c 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_datosGenerales.php @@ -49,7 +49,7 @@ -
+
" >
-
+
" >
user()->inGroup('cliente-admin') || auth()->user()->inGroup('cliente-editor'))? " hidden" : "" ?> class="calcular-presupuesto form-check-input" type="checkbox" id="excluirRotativa" From 1a3fc3eb58cf32750f3a5ed2f9af8e551e411419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 12 Nov 2024 19:14:44 +0100 Subject: [PATCH 4/5] comprueba ahora que son iguales --- .../assets/js/safekat/pages/presupuestoCliente/direcciones.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js index 2a7eb2f3..794097b8 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/direcciones.js @@ -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; } } From 71e95fe441f1054b44bdd02eaea9cf5368216d0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Tue, 12 Nov 2024 19:46:57 +0100 Subject: [PATCH 5/5] =?UTF-8?q?modificado=20c=C3=B3mo=20se=20calcula=20el?= =?UTF-8?q?=20coste=20de=20las=20direcciones?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ci4/app/Controllers/Presupuestos/Presupuestocliente.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 04334561..93aa8a42 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -396,14 +396,16 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController for ($i = 0; $i < count($tirada); $i++) { $coste_envio = 0.0; + $primer_envio = false; foreach ($direcciones as $direccion) { $coste_direccion = $this->getCosteEnvio( $direccion['id'], $return_data['peso'][$i], - $direccion['unidades'], + !$primer_envio? intval($tirada[$i]) : $direccion['unidades'], $direccion['entregaPalets'] == 'true' ? 1 : 0 )[0]; + $primer_envio = true; if (!property_exists($coste_direccion, 'coste')) {