From 1914cb01fe437b755fc2d77530501740215638b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Sat, 19 Oct 2024 14:32:49 +0200 Subject: [PATCH] a punto de guardar --- .../Presupuestos/Presupuestocliente.php | 249 +- .../Models/Presupuestos/PresupuestoModel.php | 10 +- .../cliente/items/_disenioCubierta.php | 2 +- .../presupuestoCliente/disenioCubierta.js | 1 + .../presupuestoCliente/presupuestoCliente.js | 22 +- .../pages/presupuestoCliente/resumen.js | 9 +- xdebug.log | 2138 +++++++++++++++++ 7 files changed, 2346 insertions(+), 85 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 513ae1b4..2194a775 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -412,11 +412,11 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $direccion['unidades'], $direccion['entregaPalets'] == 'true' ? 1 : 0 )[0]; - + if (!property_exists($coste_direccion, 'coste')) { $return_data['errors']->envios = "No se ha podido calcular el coste de envío"; - }else{ + } else { $coste_envio += $coste_direccion->coste; } } @@ -425,16 +425,16 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } else { for ($i = 0; $i < count($tirada); $i++) { - + $coste_envio = 0.0; $coste_direccion = $this->getCosteEnvio(null, $return_data['peso'][$i], $tirada[$i], false)[0]; - + if (!property_exists($coste_direccion, 'coste')) { $return_data['errors']->envios = "No se ha podido calcular el coste de envío"; - }else{ + } else { $coste_envio += $coste_direccion->coste; } - + $return_data['precio_u'][$i] = round(floatval($return_data['precio_u'][$i]) + $coste_envio / $tirada[$i], 4); } @@ -616,11 +616,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $selected_tirada = $reqData['selectedTirada'] ?? 0; $tamanio = $reqData['tamanio']; $paginas = $reqData['paginas'] ?? 0; - + $paginas_color = $reqData['paginasColor'] ?? 0; + $posPaginasColor = $reqData['posPaginasColor'] ?? ""; $paginasColorConsecutivas = $reqData['pagColorConsecutivas'] ?? 0; - $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? 0; - + $papelInteriorDiferente = $reqData['papelInteriorDiferente'] ?? 0; + $tipo = $reqData['tipo']; $paginasCuadernillo = $reqData['paginasCuadernillo'] ?? null; @@ -655,11 +656,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $interior = [ 'papel_generico' => $papel, 'gramaje' => $gramaje, - 'excluirRotativa' => $excluirRotativa, + 'excluirRotativa' => $excluirRotativa, 'paginas' => $paginas, + 'paginasColor' => $paginas_color, 'pos_paginas_color' => $posPaginasColor, 'paginas_color_consecutivas' => $paginasColorConsecutivas, - 'papel_interior_diferente' => $papelInteriorDiferente + 'papelInteriorDiferente' => $papelInteriorDiferente ]; @@ -916,7 +918,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $data['datosGenerales']['excluirRotativa'] = $presupuesto->excluir_rotativa; $data['datosGenerales']['clienteId'] = $presupuesto->cliente_id; $data['datosGenerales']['clienteNombre'] = $modelCliente->getNombre($presupuesto->cliente_id); - model('App\Models\Clientes\ClienteModel') + model('App\Models\Clientes\ClienteModel') ->find($presupuesto->cliente_id)->nombre; $data['datosGenerales']['papelFormatoId'] = $presupuesto->papel_formato_id; $data['datosGenerales']['papelFormatoNombre'] = $modelPapelFormato->getNombre($presupuesto->papel_formato_id); @@ -951,7 +953,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $modelLinea = new PresupuestoLineaModel(); $lineas = $modelLinea->where('presupuesto_id', $id)->findAll(); - [$data['datosGenerales']['paginasNegro'], $data['datosGenerales']['paginasColor']] = + [$data['datosGenerales']['paginasNegro'], $data['datosGenerales']['paginasColor']] = $this->getPaginas($lineas); @@ -1339,7 +1341,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $gramaje = $datos_entrada['interior']['gramaje']; $excluirRotativa = $datos_entrada['interior']['excluirRotativa']; $paginas = $datos_entrada['interior']['paginas']; - $paginas_color = $datos_entrada['interior']['paginas_color']; + $paginas_color = $datos_entrada['interior']['paginasColor']; // Cubierta @@ -1358,15 +1360,6 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController // Servicios $servicios = $datos_entrada['servicios'] ?? []; - $error = (object) [ - 'interior' => "", - 'cubierta' => "", - 'sobrecubierta' => "", - 'guardas' => "", - 'servicios' => "", - 'serviciosDefecto' => "", - "envios" => "", - ]; $coste_servicios = 0.0; $POD = model('App\Models\Configuracion\ConfiguracionSistemaModel')->getPOD(); @@ -1427,9 +1420,15 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if ($interior == -1) { $errorModel = new ErrorPresupuesto(); - $errorModel->insertError($datos_entrada['id'], auth()->user()->id, 'No se puede obtener el interior', $input_data); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + ' + No se puede obtener el interior', + $input_data + ); $return_data = [ - 'errors' => (object)([ + 'errors' => (object) ([ 'status' => 1 ]), ]; @@ -1455,8 +1454,6 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - - // Si es POD hay que volver a calcular para incluir la merma correcta if ($tirada[$t] <= $POD) { $num_formas = []; @@ -1472,10 +1469,16 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } $interior = PresupuestoClienteService::obtenerInterior($input_data); if ($interior == -1) { + $errorModel = new ErrorPresupuesto(); - $errorModel->insertError($datos_entrada['id'], auth()->user()->id, 'No se puede obtener el interior', $input_data); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener el interior', + $input_data + ); $return_data = [ - 'errors' => (object)([ + 'errors' => (object) ([ 'status' => 1 ]), ]; @@ -1511,11 +1514,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } } - if ($costeInterior <= 0) - $error->interior = lang('Presupuestos.errores.noInterior'); - else - $error->interior = ""; + if ($costeInterior <= 0){ + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener el interior', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } // Cubierta $input_data['papel_generico'] = $papel_generico_cubierta; @@ -1548,11 +1561,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); } } - if ($coste_cubierta <= 0) - $error->cubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); - else - $error->cubierta = ""; + if ($coste_cubierta <= 0) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener la cubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } // Acabados Cubierta $tarifaAcabadoCubierta = $this->obtenerTarifasAcabado($acabadosCubierta); $acabadoCubierta = []; @@ -1564,8 +1587,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $acabadoCubierta = $model->getPrecioTarifa($tarifa, $datosPedido->tirada, -1, $POD); if (count($acabadoCubierta) > 0) { - if ($acabadoCubierta[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + if ($acabadoCubierta[0]->total <= 0) { + + $input_data['tarifas_acabado_cubierta'] = $tarifaAcabadoCubierta; + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener acabados de cubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } $coste_servicios += floatval($acabadoCubierta[0]->total); } } @@ -1607,11 +1644,21 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); } } - if ($coste_sobrecubierta <= 0) - $error->sobrecubierta = lang('Presupuestos.errores.noCubiertaSobrecubierta'); - else - $error->sobrecubierta = ""; + if ($coste_sobrecubierta <= 0) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener la sobrecubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } $lomo_sobrecubierta = $lomo + floatval($linea_sobrecubierta['mano']); $tarifaAcabadoSobrecubierta = $this->obtenerTarifasAcabado(['plastificado' => $sobreCubierta['acabados']]); @@ -1619,14 +1666,30 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController foreach ($tarifaAcabadoSobrecubierta as $tarifa) { // NONE - if($tarifaAcabadoSobrecubierta[0] == 0) + if ($tarifaAcabadoSobrecubierta[0] == 0) continue; $model = model('App\Models\Presupuestos\PresupuestoAcabadosModel'); $acabadoSobrecubierta = $model->getPrecioTarifa($tarifa, $datosPedido->tirada, -1, $POD); if (count($acabadoSobrecubierta) > 0) { - if ($acabadoSobrecubierta[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + if ($acabadoSobrecubierta[0]->total <= 0) { + + $input_data['tarifas_acabado_sobrecubierta'] = $tarifaAcabadoSobrecubierta; + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener acabados de sobrecubierta', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } + $coste_servicios += floatval($acabadoSobrecubierta[0]->total); } } @@ -1677,10 +1740,20 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ); } } - if ($coste_guardas <= 0) - $error->guardas = lang('Presupuestos.errores.noGuardas'); - else - $error->guardas = ""; + if ($coste_guardas <= 0) { + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener las guardas', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } } } if ($extra_info) { @@ -1704,8 +1777,23 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController ]); $costeServiciosDefecto = 0.0; foreach ($servDefecto as $servicio) { - if ($servicio->total <= 0) - $error->serviciosDefecto = lang('Presupuestos.errores.errorPresupuesto'); + if ($servicio->total <= 0) { + + $input_data['servicios'] = $servDefecto; + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener servicios', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } + $costeServiciosDefecto += floatval($servicio->total); if ($extra_info) { @@ -1741,6 +1829,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController if ($datos_entrada['servicios']['prototipo']) array_push($servicios, 9); foreach ($servicios as $servicio) { + if (intval($servicio) == 3) { // Servicios acabado $resultado = PresupuestoCLienteService::getServiciosAcabados([ @@ -1749,8 +1838,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'POD' => $POD, ]); array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->total <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + + if ($resultado[0]->total <= 0) { + + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener servicio con id 3', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } $coste_servicios += floatval($resultado[0]->total); if ($extra_info) { @@ -1763,8 +1866,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'tarifa_id' => $servicio, ]); array_push($serviciosAutomaticos, $resultado[0]); - if ($resultado[0]->precio <= 0) - $error->servicios = lang('Presupuestos.errores.errorPresupuesto'); + if ($resultado[0]->precio <= 0){ + + $errorModel = new ErrorPresupuesto(); + $errorModel->insertError( + $datos_entrada['id'], + auth()->user()->id, + 'No se puede obtener servicio con id 9', + $input_data + ); + $return_data = [ + 'errors' => (object) ([ + 'status' => 1 + ]), + ]; + } + $coste_servicios += floatval($resultado[0]->precio); if ($extra_info) { @@ -1776,11 +1893,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController array_push($precio_u, round(($costeInterior + $coste_cubierta + $coste_sobrecubierta + $costeServiciosDefecto + $coste_servicios) / $tirada[$t], 4)); array_push($peso, round($peso_interior + $peso_cubierta + $peso_sobrecubierta + $peso_guardas, 2)); - foreach ($error as $err) { - if ($err != "") - break; - } - + if ($extra_info) { $totalServicios -= $margenServicios; $porcentajeMargenServicios = $margenServicios / ($margenServicios + $totalServicios) * 100; @@ -1806,8 +1919,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController )); } - $info['lomo_cubierta'] = $lomo; - $info['lomo_sobrecubierta'] = $lomo_sobrecubierta; + $info['lomo_cubierta'] = round(floatval($lomo), 2); + $info['lomo_sobrecubierta'] = round(floatval($lomo_sobrecubierta), 2); $return_data['info'] = $info; @@ -1823,7 +1936,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } $return_data += [ - 'errors' => $error, + 'errors' => [], //'total_lp' => $costeInterior + $coste_cubierta + $coste_sobrecubierta, //'acabadoCubierta' => $acabadoCubierta, //'acabadoSobrecubierta' => $acabadoSobrecubierta, @@ -1839,6 +1952,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } return $return_data; + } catch (Exception $e) { return [ 'exception' => $e->getMessage(), @@ -2285,11 +2399,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController } - private function getPaginas($lineas){ + private function getPaginas($lineas) + { $paginasNegro = 0; $paginasColor = 0; - + foreach ($lineas as $linea) { if (strpos($linea->tipo, "lp_bn") !== false || strpos($linea->tipo, "lp_bnhq") !== false) { $paginasNegro = $linea->paginas; @@ -2308,7 +2423,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $paginasNegro = $linea->paginas - $linea->rotativa_pag_color; } } - + return [$paginasNegro, $paginasColor]; } } diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php index ee35e651..b4484b49 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php @@ -426,7 +426,7 @@ class PresupuestoModel extends \App\Models\BaseModel 'pos_paginas_color' => $data['interior']['pos_paginas_color'], 'paginas_color_consecutivas' => $data['interior']['paginas_color_consecutivas'], - 'papel_interior_diferente' => $data['interior']['papel_interior_diferente'], + 'papel_interior_diferente' => $data['interior']['papelInteriorDiferente'], 'lomo_cubierta' => $extra_info['lomo_cubierta'], 'lomo_sobrecubierta' => $extra_info['lomo_sobrecubierta'], @@ -495,27 +495,27 @@ class PresupuestoModel extends \App\Models\BaseModel if (is_array($data)) { // -- INTERIOR -- // Si hay negro - if ($data['interior']['paginas'] > $data['interior']['paginas_color']) { + if (intval($data['interior']['paginas']) > intval($data['interior']['paginasColor'])) { if ($data['isHq']) $key = 'bnhq'; else $key = 'bn'; $values[$key] = array( - 'paginas' => intval($data['interior']['paginas']) - intval($data['interior']['paginas_color']), + 'paginas' => intval($data['interior']['paginas']) - intval(intval($data['interior']['paginasColor'])), 'papel_id' => intval($data['interior']['papel_generico']['id']), 'gramaje' => intval($data['interior']['gramaje']), ); } // Si hay color - if ($data['interior']['paginas_color'] > 0) { + if (intval($data['interior']['paginasColor']) > 0) { if ($data['isHq']) $key = 'colorhq'; else $key = 'color'; $values[$key] = array( - 'paginas' => intval($data['interior']['paginas_color']), + 'paginas' => intval(intval($data['interior']['paginasColor'])), 'papel_id' => intval($data['interior']['papel_generico']['id']), 'gramaje' => intval($data['interior']['gramaje']), ); diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php index 844d36f0..048b2110 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cliente/items/_disenioCubierta.php @@ -127,7 +127,7 @@ - diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js index d54de01a..421e1d32 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/disenioCubierta.js @@ -386,6 +386,7 @@ class DisenioCubierta { sobrecubierta.gramaje = papel.split(' ')[2]; sobrecubierta.solapas = this.domItem.find("#solapasSobrecubierta").val(); sobrecubierta.plastificado = 'Plastificado ' + this.domItem.find("#plastificadoSobrecubierta").children("option:selected").text(); + return sobrecubierta; } else { let sobrecubierta = {}; diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js index 80069b73..c344a814 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/presupuestoCliente.js @@ -47,8 +47,6 @@ class PresupuestoCliente { init() { - this.RELLENAR_PRESUPUESTO(false); - // Fuerza el foco en el campo de búsqueda de select2 $(document).on('select2:open', () => { document.querySelector('.select2-search__field').focus(); @@ -66,8 +64,6 @@ class PresupuestoCliente { this.btnPrev.on('click', this.#prevtStep.bind(this)); this.btnSave.on('click', this.#savePresupuesto.bind(this)); - //this.RELLENAR_PRESUPUESTO(true); - if (window.location.href.includes("edit")) { $(".calcular-presupuesto").on('change', ()=>{}); this.#cargarPresupuesto(); @@ -113,8 +109,9 @@ class PresupuestoCliente { if (Object.values(datos_to_check).every(this.#isValidDataForm)) { try { - $('#loader').modal('show'); - $('#loader').modal('show'); + setTimeout(function() { + $('#loader').modal('show'); + }, 0); // Si se está ejecutando la petición, abortar la petición anterior this.ajax_calcular.abort(); @@ -132,7 +129,7 @@ class PresupuestoCliente { } - RELLENAR_PRESUPUESTO(finalizar) { + /*RELLENAR_PRESUPUESTO(finalizar) { if (finalizar) { @@ -185,7 +182,7 @@ class PresupuestoCliente { else { $("#titulo").trigger('change'); } - } + }*/ stepperHandler() { @@ -243,8 +240,13 @@ class PresupuestoCliente { $('#loader').modal('hide'); console.log(response); if (this.datos["confirmar"] || window.location.href.includes("add")) { - sessionStorage.setItem('message', response.message); - window.location.href = response.url + '/' + response.status; + if(response.status){ + sessionStorage.setItem('message', response.message); + window.location.href = response.url + '/' + response.status; + } + else{ + popErrorAlert("No se ha podido guardar el presupuesto. Por favor, póngase en contacto con el departamento comercial."); + } } else { popSuccessAlert(response.message); diff --git a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js index 29244579..ee9e9a08 100644 --- a/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js +++ b/httpdocs/assets/js/safekat/pages/presupuestoCliente/resumen.js @@ -57,7 +57,12 @@ class Resumen { this.titulo.text(this.datosGenerales.titulo.val()); this.tipoLibro.text(this.#capitalizeFirstLetter(this.datosGenerales.tiposLibro.filter('.selected').attr('id'))); - this.formato.text(this.datosGenerales.papelFormatoId.find('option:selected').text()); + + if (this.datosGenerales.checkFormatoPersonalizado.is(':checked')) + this.formato.text(this.datosGenerales.anchoPersonalizado.val() + ' x ' + this.datosGenerales.altoPersonalizado.val()); + else + this.formato.text(this.datosGenerales.papelFormatoId.find('option:selected').text()); + this.paginas.text(this.datosGenerales.paginas.val()); this.paginasColor.text(this.datosGenerales.paginasColor.val()); this.paginasNegro.text(this.datosGenerales.paginasNegro.val()); @@ -93,7 +98,7 @@ class Resumen { this.itemsCubiertaTapaBlanda.removeClass('d-none'); this.itemsCubiertaTapaDura.addClass('d-none'); const solapasCubierta = this.disenioCubierta.getSolapasCubierta(); - this.solapasCubierta.text( solapasCubierta == false ? 'No' : solapasCubierta); + this.solapasCubierta.text(solapasCubierta == false ? 'No' : solapasCubierta); } else { this.itemsCubiertaTapaDura.removeClass('d-none'); diff --git a/xdebug.log b/xdebug.log index b87caa3c..a6941d30 100644 --- a/xdebug.log +++ b/xdebug.log @@ -58205,3 +58205,2141 @@ Stack trace: [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-10-19 08:36:40.606820 +[23] Log opened at 2024-10-19 11:04:19.856566 +[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-10-19 11:04:20.844931 + +[24] Log opened at 2024-10-19 11:04:20.860030 +[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-10-19 11:04:21.819793 + +[24] Log opened at 2024-10-19 11:04:21.951596 +[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-10-19 11:04:22.612670 + +[25] Log opened at 2024-10-19 11:04:22.798730 +[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-10-19 11:04:23.686746 + +[25] Log opened at 2024-10-19 11:04:24.186474 +[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-10-19 11:04:25.653443 + +[25] Log opened at 2024-10-19 11:04:25.666374 +[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-10-19 11:04:26.849196 + +[25] Log opened at 2024-10-19 11:04:26.939237 +[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-10-19 11:04:27.589930 + +[25] Log opened at 2024-10-19 11:04:27.800410 +[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. +[26] Log opened at 2024-10-19 11:04:27.808251 +[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] Log opened at 2024-10-19 11:04:27.873453 +[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). +[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). +[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-10-19 11:04:28.756829 + +[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-10-19 11:04:29.408429 + +[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-10-19 11:04:29.825157 + +[31] Log opened at 2024-10-19 11:24:53.162648 +[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-10-19 11:24:54.288736 + +[31] Log opened at 2024-10-19 11:24:54.304981 +[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-10-19 11:24:55.385669 + +[33] Log opened at 2024-10-19 11:27:14.122236 +[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-10-19 11:27:15.865850 + +[33] Log opened at 2024-10-19 11:27:16.105284 +[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. +[24] Log opened at 2024-10-19 11:27:16.163399 +[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. +[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. +[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). +[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-10-19 11:27:16.762627 + +[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-10-19 11:27:17.353152 + +[22] Log opened at 2024-10-19 11:27:17.413862 +[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-10-19 11:27:17.523675 +[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-10-19 11:27:17.525676 +[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. +[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). +[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). +[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-10-19 11:27:18.550039 + +[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. +[26] [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-10-19 11:27:19.214516 + +[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-10-19 11:27:19.573407 + +[31] Log opened at 2024-10-19 11:27:34.898901 +[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-10-19 11:27:36.628094 + +[31] Log opened at 2024-10-19 11:27:36.853981 +[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-10-19 11:27:36.917001 +[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] [Step 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] 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. +[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-10-19 11:27:37.517397 + +[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-10-19 11:27:38.096461 + +[23] Log opened at 2024-10-19 11:27:38.155942 +[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-10-19 11:27:38.254406 +[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. +[24] Log opened at 2024-10-19 11:27:38.263442 +[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] [Step 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). +[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). +[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-10-19 11:27:39.259703 + +[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. +[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-10-19 11:27:39.961342 + +[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-10-19 11:27:40.300303 + +[22] Log opened at 2024-10-19 11:27:50.258699 +[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. +[26] Log opened at 2024-10-19 11:27:50.338840 +[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. +[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). +[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] Log opened at 2024-10-19 11:27:51.052232 +[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. +[22] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[36] Log opened at 2024-10-19 11:27:51.136828 +[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). +[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. +[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). +[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-10-19 11:27:51.487632 + +[31] Log opened at 2024-10-19 11:27:51.512413 +[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. +[26] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[33] Log opened at 2024-10-19 11:27:51.596291 +[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. +[32] Log opened at 2024-10-19 11:27:51.678605 +[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] [Step 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. +[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] Log opened at 2024-10-19 11:27:51.819178 +[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] Log opened at 2024-10-19 11:27:51.838953 +[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. +[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). +[27] [Step Debug] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[24] Log opened at 2024-10-19 11:27:51.937427 +[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). +[26] Log closed at 2024-10-19 11:27:51.940825 + +[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] Log opened at 2024-10-19 11:27:52.032142 +[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] [Step Debug] ERR: Time-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. +[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] 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] 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-10-19 11:27:52.335854 + +[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. +[31] [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-10-19 11:27:52.701398 + +[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. +[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-10-19 11:27:53.080148 + +[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-10-19 11:27:53.456202 + +[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-10-19 11:27:53.862320 + +[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. +[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). +[35] Log closed at 2024-10-19 11:27:54.272028 + +[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-10-19 11:27:54.636067 + +[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-10-19 11:27:55.022669 + +[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-10-19 11:27:55.419836 + +[36] Log opened at 2024-10-19 11:28:29.342384 +[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. +[38] Log opened at 2024-10-19 11:28:29.354223 +[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. +[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). +[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). +[39] Log opened at 2024-10-19 11:28:31.331859 +[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. +[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] 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-10-19 11:28:53.126303 + +[31] Log opened at 2024-10-19 11:29:03.714822 +[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). +[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-10-19 11:29:05.658030 + +[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-10-19 11:29:17.035250 + +[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-10-19 11:29:35.548622 + +[33] Log opened at 2024-10-19 11:30:21.669722 +[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-10-19 11:30:35.278180 + +[32] Log opened at 2024-10-19 11:31:35.124865 +[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-10-19 11:31:55.527152 + +[32] Log opened at 2024-10-19 11:31:57.013760 +[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-10-19 11:32:11.904407 + +[32] Log opened at 2024-10-19 11:32:16.160640 +[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-10-19 11:32:33.117813 + +[35] Log opened at 2024-10-19 11:32:57.729200 +[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] [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-10-19 11:33:00.479523 + +[23] Log opened at 2024-10-19 11:34:17.625395 +[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-10-19 11:34:34.254135 + +[24] Log opened at 2024-10-19 11:35:07.939242 +[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-10-19 11:35:23.710981 + +[22] Log opened at 2024-10-19 11:36:19.926718 +[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-10-19 11:36:21.097104 + +[22] Log opened at 2024-10-19 11:36:24.279397 +[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-10-19 11:36:25.535613 + +[22] Log opened at 2024-10-19 11:36:27.878126 +[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-10-19 11:36:29.006997 + +[22] Log opened at 2024-10-19 11:36:29.742395 +[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-10-19 11:36:30.912480 + +[22] Log opened at 2024-10-19 11:36:30.934226 +[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-10-19 11:36:47.719031 + +[36] Log opened at 2024-10-19 11:43:56.325434 +[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-10-19 11:43:57.601306 + +[36] Log opened at 2024-10-19 11:43:57.665440 +[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] [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-10-19 11:43:58.601831 + +[36] Log opened at 2024-10-19 11:43:58.879043 +[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] [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-10-19 11:43:59.812571 + +[38] Log opened at 2024-10-19 11:59:13.491879 +[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. +[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] [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-10-19 11:59:15.167801 + +[38] Log opened at 2024-10-19 11:59:15.379288 +[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. +[39] Log opened at 2024-10-19 11:59:15.382742 +[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. +[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). +[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). +[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-10-19 11:59:16.093669 + +[24] Log opened at 2024-10-19 11:59:16.112495 +[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. +[22] Log opened at 2024-10-19 11:59:16.125567 +[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. +[39] [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] 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. +[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-10-19 11:59:16.693544 + +[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-10-19 11:59:17.188764 + +[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-10-19 11:59:18.187484 + +[22] Log opened at 2024-10-19 11:59:18.347593 +[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. +[32] Log opened at 2024-10-19 11:59:18.419195 +[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. +[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. +[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). +[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-10-19 11:59:19.011132 + +[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-10-19 11:59:19.703223 + +[22] Log opened at 2024-10-19 11:59:19.750380 +[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. +[33] Log opened at 2024-10-19 11:59:19.844223 +[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-10-19 11:59:19.850057 +[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. +[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). +[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). +[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-10-19 11:59:20.891230 + +[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. +[36] [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-10-19 11:59:21.530080 + +[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-10-19 11:59:21.871451 + +[23] Log opened at 2024-10-19 11:59:28.790674 +[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-10-19 11:59:28.875536 +[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). +[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] INFO: Connecting to configured address/port: 172.29.24.59:9003. +[39] Log opened at 2024-10-19 11:59:29.877773 +[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. +[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] Log opened at 2024-10-19 11:59:29.945214 +[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. +[24] Log opened at 2024-10-19 11:59:30.047057 +[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. +[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). +[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-10-19 11:59:30.135181 + +[40] [Step 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. +[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). +[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-10-19 11:59:30.560819 + +[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. +[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] Log closed at 2024-10-19 11:59:31.008109 + +[40] [Step Debug] 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-10-19 11:59:31.391411 + +[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-10-19 11:59:31.778663 + +[32] Log opened at 2024-10-19 12:00:30.224813 +[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-10-19 12:00:30.238055 +[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] [Step 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. +[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-10-19 12:00:44.813396 + +[33] Log opened at 2024-10-19 12:00:50.534099 +[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). +[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-10-19 12:01:00.027983 + +[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-10-19 12:01:00.432262 + +[33] Log opened at 2024-10-19 12:01:03.167267 +[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-10-19 12:01:04.284691 + +[33] Log opened at 2024-10-19 12:01:05.045487 +[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-10-19 12:01:06.151390 + +[33] Log opened at 2024-10-19 12:01:07.627029 +[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-10-19 12:01:08.731040 + +[33] Log opened at 2024-10-19 12:01:08.748223 +[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-10-19 12:01:24.719063 + +[36] Log opened at 2024-10-19 12:03:34.106241 +[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-10-19 12:03:35.884491 + +[36] Log opened at 2024-10-19 12:03:36.107653 +[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] Log opened at 2024-10-19 12:03:36.157799 +[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] [Step 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] 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-10-19 12:03:36.764752 + +[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-10-19 12:03:37.362418 + +[40] Log opened at 2024-10-19 12:03:37.489240 +[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. +[23] Log opened at 2024-10-19 12:03:37.505229 +[24] Log opened at 2024-10-19 12:03:37.505228 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[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. +[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). +[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] 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-10-19 12:03:38.494602 + +[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. +[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-10-19 12:03:39.130076 + +[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-10-19 12:03:39.487429 + +[32] Log opened at 2024-10-19 12:03:46.636253 +[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. +[33] Log opened at 2024-10-19 12:03:46.702754 +[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. +[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). +[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). +[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-10-19 12:03:47.763218 + +[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-10-19 12:03:48.211304 + +[22] Log opened at 2024-10-19 12:04:48.036826 +[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-10-19 12:05:03.834688 + +[22] Log opened at 2024-10-19 12:05:05.365778 +[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-10-19 12:05:20.936532 + +[41] Log opened at 2024-10-19 12:05:26.342673 +[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-10-19 12:05:27.515512 + +[41] Log opened at 2024-10-19 12:05:31.331527 +[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-10-19 12:05:32.461194 + +[41] Log opened at 2024-10-19 12:05:32.894311 +[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-10-19 12:05:34.026490 + +[41] Log opened at 2024-10-19 12:05:34.910480 +[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-10-19 12:05:36.073592 + +[41] Log opened at 2024-10-19 12:05:36.090947 +[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-10-19 12:05:51.723531 + +[36] Log opened at 2024-10-19 12:06:09.074247 +[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-10-19 12:06:10.376968 + +[38] Log opened at 2024-10-19 12:07:14.492739 +[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. +[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] [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-10-19 12:07:15.802244 + +[39] Log opened at 2024-10-19 12:08:42.185991 +[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. +[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1327 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 11 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 12 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 13 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 14 -n "$data['excluirRotativa']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 15 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 17 -n "$linea[0]->rotativa_pag_color" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 18 -n "$data['excluirRotativa']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 20 -n "$data['excluirRotativa']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$cubierta" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$isColor" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 28 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-19 12:10:09.650638 + +[39] Log opened at 2024-10-19 12:10:14.573526 +[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. +[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1327 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 13 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 15 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 17 -n "$paginasCuadernillo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_remove -i 18 -d 390009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1328 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 20 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 21 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 23 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 25 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-19 12:11:10.020500 + +[23] Log opened at 2024-10-19 12:11:53.794515 +[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-10-19 12:11:55.032210 + +[40] Log opened at 2024-10-19 12:12:46.787493 +[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-10-19 12:12:47.990631 + +[24] Log opened at 2024-10-19 12:13:25.987193 +[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-10-19 12:13:27.244507 + +[32] Log opened at 2024-10-19 12:14:28.531889 +[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-10-19 12:14:29.785439 + +[33] Log opened at 2024-10-19 12:14:42.439328 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 656 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1329 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1344 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 14 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 15 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 17 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 19 -n "$papel" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 20 -n "$reqData" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 21 -d 330003 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 248 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 23 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 24 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 25 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 26 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 28 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 29 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 30 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 31 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 33 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 34 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 36 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 38 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 40 -n "$data[\"papel_generico\"]" -p 0 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 41 -n "$data[\"papel_generico\"][\"negro\"]" -p 0 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 42 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-19 12:17:28.169480 + +[33] Log opened at 2024-10-19 12:17:30.716207 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1329 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1344 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 248 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 14 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 15 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 18 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 20 -d 330012 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 21 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 22 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 23 -n "$datos_entrada" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 24 -n "$data" -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 25 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 27 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 28 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 29 -n "$datos_entrada" -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] <- context_names -i 31 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- step_over -i 33 +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 34 +[33] [Step Debug] -> + +[33] [Step Debug] <- property_get -i 35 -n "$datos_entrada" -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] <- context_names -i 37 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_remove -i 39 -d 330014 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 40 +[33] [Step Debug] -> + +[33] Log closed at 2024-10-19 12:18:02.198996 + +[22] Log opened at 2024-10-19 12:18:21.642834 +[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] [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-10-19 12:18:37.408354 + +[41] Log opened at 2024-10-19 12:22:23.243829 +[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-10-19 12:22:24.506566 + +[36] Log opened at 2024-10-19 12:24:34.133809 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 +[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] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 14 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 15 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 16 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 18 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 19 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 20 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 22 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 24 -n "$datos_entrada[\"interior\"]" -p 0 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 26 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 27 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 28 -n "$datos_entrada" -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] <- context_names -i 30 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 32 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 33 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 36 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_into -i 38 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 39 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 40 -n "$datos_entrada" -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] <- context_names -i 42 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 44 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 45 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 46 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 47 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 48 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 49 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 50 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 51 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 52 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 53 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 54 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 56 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 57 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 58 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 60 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 61 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 62 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 63 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 64 -n "$datos_entrada" -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-10-19 12:26:03.337225 + +[36] Log opened at 2024-10-19 12:26:06.018450 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 +[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] <- run -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 14 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 17 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 19 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 21 -n "$datos_entrada" -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] Log closed at 2024-10-19 12:26:12.443303 + +[36] Log opened at 2024-10-19 12:26:15.387395 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1339 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 20 +[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] <- run -i 13 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 14 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 15 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 16 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 17 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_remove -i 19 -d 360017 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 20 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 22 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 23 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 24 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_remove -i 26 -d 360018 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 245 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 28 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 29 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 30 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 31 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 32 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 34 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 35 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 36 -n "$data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 37 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 39 -n "$datos_entrada" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 40 -d 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 "$data['papelInteriorDiferente']" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 44 +[36] [Step Debug] -> + +[36] Log closed at 2024-10-19 12:27:52.878712 + +[36] Log opened at 2024-10-19 12:27:56.411497 +[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] [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-10-19 12:28:14.240551 + +[38] Log opened at 2024-10-19 12:28:48.216948 +[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. +[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] [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-10-19 12:29:04.577054 + +[39] Log opened at 2024-10-19 12:29:38.556275 +[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. +[39] [Step Debug] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 245 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 498 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 14 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 15 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 16 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 17 -n "$data" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 18 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 19 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_remove -i 21 -d 390016 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 22 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 23 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$datos_entrada" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$data" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$data['papelInteriorDiferente']" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 27 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 29 -n "$data[\"interior\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 30 +[39] [Step Debug] -> + +[39] Log closed at 2024-10-19 12:30:49.644105 + +[23] Log opened at 2024-10-19 12:30:59.980876 +[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/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 12 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-10-19 12:31:14.353104 + +[40] Log opened at 2024-10-19 12:31:50.926433 +[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] INFO: Connected to debugging client: 172.29.24.59:9003 (through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 5 -n extended_properties -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/httpdocs/assets/js/safekat/pages/presupuestoCliente/datosGenerales.js -n 579 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 305 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 429 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-10-19 12:32:07.038683 +